2018-12-13 23:22:38 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Server-side rendering of the `core/latest-posts` block.
|
|
|
|
*
|
2018-12-17 20:06:59 +01:00
|
|
|
* @package WordPress
|
2018-12-13 23:22:38 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the `core/latest-posts` block on server.
|
|
|
|
*
|
|
|
|
* @param array $attributes The block attributes.
|
|
|
|
*
|
|
|
|
* @return string Returns the post content with latest posts added.
|
|
|
|
*/
|
|
|
|
function render_block_core_latest_posts( $attributes ) {
|
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 16:37:00 +01:00
|
|
|
$args = array(
|
2019-03-07 10:09:59 +01:00
|
|
|
'posts_per_page' => $attributes['postsToShow'],
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'order' => $attributes['order'],
|
|
|
|
'orderby' => $attributes['orderBy'],
|
|
|
|
'suppress_filters' => false,
|
2018-12-13 23:22:38 +01:00
|
|
|
);
|
|
|
|
|
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 16:37:00 +01:00
|
|
|
if ( isset( $attributes['categories'] ) ) {
|
2018-12-17 20:06:59 +01:00
|
|
|
$args['category'] = $attributes['categories'];
|
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 16:37:00 +01:00
|
|
|
}
|
|
|
|
|
2019-03-07 10:09:59 +01:00
|
|
|
$recent_posts = get_posts( $args );
|
Block Editor: Update `@wordpress` dependencies to match Gutenberg 4.5.1.
- Update the annotations, api-fetch, block-library, blocks, components, compose, core-data, data, date, dom, edit-post, editor, element, format-library, html-entities, i18n, jest-console, jest-preset-default, keycodes, list-reusable-blocks, notices, nux, plugins, rich-text, scripts, token-lists, url, viewport packages.
- Upgrades React from 16.5.2 to 16.6.3.
- Adds a missing `wp-date` dependency to the editor script.
- Updates changed dependencies in `script-loader.php`.
- Fixes undefined notices in some blocks.
- Removes incorrect `gutenberg` textdomain.
Merges [43891], [43903], and [43919] to trunk.
Props atimmer, aduth, youknowriad, danielbachhuber.
See #45145.
Built from https://develop.svn.wordpress.org/trunk@44262
git-svn-id: http://core.svn.wordpress.org/trunk@44092 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 16:37:00 +01:00
|
|
|
|
2018-12-13 23:22:38 +01:00
|
|
|
$list_items_markup = '';
|
|
|
|
|
2019-09-19 17:19:18 +02:00
|
|
|
$excerpt_length = $attributes['excerptLength'];
|
|
|
|
|
2018-12-13 23:22:38 +01:00
|
|
|
foreach ( $recent_posts as $post ) {
|
2019-03-07 10:09:59 +01:00
|
|
|
$title = get_the_title( $post );
|
2018-12-13 23:22:38 +01:00
|
|
|
if ( ! $title ) {
|
2019-09-19 17:19:18 +02:00
|
|
|
$title = __( '(no title)' );
|
2018-12-13 23:22:38 +01:00
|
|
|
}
|
|
|
|
$list_items_markup .= sprintf(
|
|
|
|
'<li><a href="%1$s">%2$s</a>',
|
2019-03-07 10:09:59 +01:00
|
|
|
esc_url( get_permalink( $post ) ),
|
|
|
|
$title
|
2018-12-13 23:22:38 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
if ( isset( $attributes['displayPostDate'] ) && $attributes['displayPostDate'] ) {
|
|
|
|
$list_items_markup .= sprintf(
|
|
|
|
'<time datetime="%1$s" class="wp-block-latest-posts__post-date">%2$s</time>',
|
2019-03-07 10:09:59 +01:00
|
|
|
esc_attr( get_the_date( 'c', $post ) ),
|
|
|
|
esc_html( get_the_date( '', $post ) )
|
2018-12-13 23:22:38 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-09-19 17:19:18 +02:00
|
|
|
if ( isset( $attributes['displayPostContent'] ) && $attributes['displayPostContent']
|
|
|
|
&& isset( $attributes['displayPostContentRadio'] ) && 'excerpt' === $attributes['displayPostContentRadio'] ) {
|
|
|
|
$post_excerpt = $post->post_excerpt;
|
|
|
|
if ( ! ( $post_excerpt ) ) {
|
|
|
|
$post_excerpt = $post->post_content;
|
|
|
|
}
|
|
|
|
$trimmed_excerpt = esc_html( wp_trim_words( $post_excerpt, $excerpt_length, ' … ' ) );
|
|
|
|
|
|
|
|
$list_items_markup .= sprintf(
|
|
|
|
'<div class="wp-block-latest-posts__post-excerpt">%1$s',
|
|
|
|
$trimmed_excerpt
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( strpos( $trimmed_excerpt, ' … ' ) !== false ) {
|
|
|
|
$list_items_markup .= sprintf(
|
|
|
|
'<a href="%1$s">%2$s</a></div>',
|
|
|
|
esc_url( get_permalink( $post ) ),
|
|
|
|
__( 'Read more' )
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$list_items_markup .= sprintf(
|
|
|
|
'</div>'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( isset( $attributes['displayPostContent'] ) && $attributes['displayPostContent']
|
|
|
|
&& isset( $attributes['displayPostContentRadio'] ) && 'full_post' === $attributes['displayPostContentRadio'] ) {
|
|
|
|
$list_items_markup .= sprintf(
|
|
|
|
'<div class="wp-block-latest-posts__post-full-content">%1$s</div>',
|
|
|
|
wp_kses_post( html_entity_decode( $post->post_content, ENT_QUOTES, get_option( 'blog_charset' ) ) )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-12-13 23:22:38 +01:00
|
|
|
$list_items_markup .= "</li>\n";
|
|
|
|
}
|
|
|
|
|
2019-09-19 17:19:18 +02:00
|
|
|
$class = 'wp-block-latest-posts wp-block-latest-posts__list';
|
2018-12-13 23:22:38 +01:00
|
|
|
if ( isset( $attributes['align'] ) ) {
|
|
|
|
$class .= ' align' . $attributes['align'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( isset( $attributes['postLayout'] ) && 'grid' === $attributes['postLayout'] ) {
|
|
|
|
$class .= ' is-grid';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( isset( $attributes['columns'] ) && 'grid' === $attributes['postLayout'] ) {
|
|
|
|
$class .= ' columns-' . $attributes['columns'];
|
|
|
|
}
|
|
|
|
|
2018-12-14 11:55:01 +01:00
|
|
|
if ( isset( $attributes['displayPostDate'] ) && $attributes['displayPostDate'] ) {
|
|
|
|
$class .= ' has-dates';
|
|
|
|
}
|
|
|
|
|
2018-12-13 23:22:38 +01:00
|
|
|
if ( isset( $attributes['className'] ) ) {
|
|
|
|
$class .= ' ' . $attributes['className'];
|
|
|
|
}
|
|
|
|
|
2019-09-19 17:19:18 +02:00
|
|
|
return sprintf(
|
2018-12-13 23:22:38 +01:00
|
|
|
'<ul class="%1$s">%2$s</ul>',
|
|
|
|
esc_attr( $class ),
|
|
|
|
$list_items_markup
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers the `core/latest-posts` block on server.
|
|
|
|
*/
|
|
|
|
function register_block_core_latest_posts() {
|
|
|
|
register_block_type(
|
|
|
|
'core/latest-posts',
|
|
|
|
array(
|
|
|
|
'attributes' => array(
|
2019-09-19 17:19:18 +02:00
|
|
|
'align' => array(
|
2018-12-13 23:22:38 +01:00
|
|
|
'type' => 'string',
|
2019-09-19 17:19:18 +02:00
|
|
|
'enum' => array( 'left', 'center', 'right', 'wide', 'full' ),
|
2018-12-13 23:22:38 +01:00
|
|
|
),
|
2019-09-19 17:19:18 +02:00
|
|
|
'className' => array(
|
2018-12-13 23:22:38 +01:00
|
|
|
'type' => 'string',
|
|
|
|
),
|
2019-09-19 17:19:18 +02:00
|
|
|
'categories' => array(
|
|
|
|
'type' => 'string',
|
|
|
|
),
|
|
|
|
'postsToShow' => array(
|
2018-12-13 23:22:38 +01:00
|
|
|
'type' => 'number',
|
|
|
|
'default' => 5,
|
|
|
|
),
|
2019-09-19 17:19:18 +02:00
|
|
|
'displayPostContent' => array(
|
|
|
|
'type' => 'boolean',
|
|
|
|
'default' => false,
|
|
|
|
),
|
|
|
|
'displayPostContentRadio' => array(
|
|
|
|
'type' => 'string',
|
|
|
|
'default' => 'excerpt',
|
|
|
|
),
|
|
|
|
'excerptLength' => array(
|
|
|
|
'type' => 'number',
|
|
|
|
'default' => 55,
|
|
|
|
),
|
|
|
|
'displayPostDate' => array(
|
2018-12-13 23:22:38 +01:00
|
|
|
'type' => 'boolean',
|
|
|
|
'default' => false,
|
|
|
|
),
|
2019-09-19 17:19:18 +02:00
|
|
|
'postLayout' => array(
|
2018-12-13 23:22:38 +01:00
|
|
|
'type' => 'string',
|
|
|
|
'default' => 'list',
|
|
|
|
),
|
2019-09-19 17:19:18 +02:00
|
|
|
'columns' => array(
|
2018-12-13 23:22:38 +01:00
|
|
|
'type' => 'number',
|
|
|
|
'default' => 3,
|
|
|
|
),
|
2019-09-19 17:19:18 +02:00
|
|
|
'order' => array(
|
2018-12-13 23:22:38 +01:00
|
|
|
'type' => 'string',
|
|
|
|
'default' => 'desc',
|
|
|
|
),
|
2019-09-19 17:19:18 +02:00
|
|
|
'orderBy' => array(
|
2018-12-13 23:22:38 +01:00
|
|
|
'type' => 'string',
|
|
|
|
'default' => 'date',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'render_callback' => 'render_block_core_latest_posts',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
add_action( 'init', 'register_block_core_latest_posts' );
|