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
|
|
|
*/
|
|
|
|
|
2020-03-03 00:21:15 +01:00
|
|
|
/**
|
|
|
|
* The excerpt length set by the Latest Posts core block
|
|
|
|
* set at render time and used by the block itself.
|
|
|
|
*
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
$block_core_latest_posts_excerpt_length = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback for the excerpt_length filter used by
|
|
|
|
* the Latest Posts block at render time.
|
|
|
|
*
|
|
|
|
* @return int Returns the global $block_core_latest_posts_excerpt_length variable
|
|
|
|
* to allow the excerpt_length filter respect the Latest Block setting.
|
|
|
|
*/
|
|
|
|
function block_core_latest_posts_get_excerpt_length() {
|
|
|
|
global $block_core_latest_posts_excerpt_length;
|
|
|
|
return $block_core_latest_posts_excerpt_length;
|
|
|
|
}
|
|
|
|
|
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 ) {
|
2020-03-03 00:21:15 +01:00
|
|
|
global $block_core_latest_posts_excerpt_length;
|
|
|
|
|
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
|
|
|
);
|
|
|
|
|
2020-03-03 00:21:15 +01:00
|
|
|
$block_core_latest_posts_excerpt_length = $attributes['excerptLength'];
|
|
|
|
add_filter( 'excerpt_length', 'block_core_latest_posts_get_excerpt_length', 20 );
|
|
|
|
|
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 = '';
|
|
|
|
|
|
|
|
foreach ( $recent_posts as $post ) {
|
2020-02-10 23:33:27 +01:00
|
|
|
$list_items_markup .= '<li>';
|
|
|
|
|
|
|
|
if ( $attributes['displayFeaturedImage'] && has_post_thumbnail( $post ) ) {
|
|
|
|
$image_style = '';
|
|
|
|
if ( isset( $attributes['featuredImageSizeWidth'] ) ) {
|
|
|
|
$image_style .= sprintf( 'max-width:%spx;', $attributes['featuredImageSizeWidth'] );
|
|
|
|
}
|
|
|
|
if ( isset( $attributes['featuredImageSizeHeight'] ) ) {
|
|
|
|
$image_style .= sprintf( 'max-height:%spx;', $attributes['featuredImageSizeHeight'] );
|
|
|
|
}
|
|
|
|
|
|
|
|
$image_classes = 'wp-block-latest-posts__featured-image';
|
|
|
|
if ( isset( $attributes['featuredImageAlign'] ) ) {
|
|
|
|
$image_classes .= ' align' . $attributes['featuredImageAlign'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$list_items_markup .= sprintf(
|
|
|
|
'<div class="%1$s">%2$s</div>',
|
|
|
|
$image_classes,
|
|
|
|
get_the_post_thumbnail(
|
|
|
|
$post,
|
|
|
|
$attributes['featuredImageSizeSlug'],
|
|
|
|
array(
|
|
|
|
'style' => $image_style,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
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(
|
2020-02-10 23:33:27 +01:00
|
|
|
'<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'] ) {
|
2020-02-10 23:33:27 +01:00
|
|
|
|
|
|
|
$trimmed_excerpt = get_the_excerpt( $post );
|
2019-09-19 17:19:18 +02:00
|
|
|
|
|
|
|
$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";
|
|
|
|
}
|
|
|
|
|
2020-03-03 00:21:15 +01:00
|
|
|
remove_filter( 'excerpt_length', 'block_core_latest_posts_get_excerpt_length', 20 );
|
|
|
|
|
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',
|
|
|
|
),
|
2020-02-10 23:33:27 +01:00
|
|
|
'displayFeaturedImage' => array(
|
|
|
|
'type' => 'boolean',
|
|
|
|
'default' => false,
|
|
|
|
),
|
|
|
|
'featuredImageAlign' => array(
|
|
|
|
'type' => 'string',
|
|
|
|
'enum' => array( 'left', 'center', 'right' ),
|
|
|
|
),
|
|
|
|
'featuredImageSizeSlug' => array(
|
|
|
|
'type' => 'string',
|
|
|
|
'default' => 'thumbnail',
|
|
|
|
),
|
|
|
|
'featuredImageSizeWidth' => array(
|
|
|
|
'type' => 'number',
|
|
|
|
'default' => null,
|
|
|
|
),
|
|
|
|
'featuredImageSizeHeight' => array(
|
|
|
|
'type' => 'number',
|
|
|
|
'default' => null,
|
|
|
|
),
|
2018-12-13 23:22:38 +01:00
|
|
|
),
|
|
|
|
'render_callback' => 'render_block_core_latest_posts',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
add_action( 'init', 'register_block_core_latest_posts' );
|