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
|
|
|
|
*/
|
2021-04-15 17:19:43 +02:00
|
|
|
global $block_core_latest_posts_excerpt_length;
|
2020-03-03 00:21:15 +01:00
|
|
|
$block_core_latest_posts_excerpt_length = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback for the excerpt_length filter used by
|
|
|
|
* the Latest Posts block at render time.
|
|
|
|
*
|
2024-05-23 21:39:28 +02:00
|
|
|
* @since 5.4.0
|
|
|
|
*
|
2020-03-03 00:21:15 +01:00
|
|
|
* @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.
|
|
|
|
*
|
2024-05-23 21:39:28 +02:00
|
|
|
* @since 5.0.0
|
|
|
|
*
|
2018-12-13 23:22:38 +01:00
|
|
|
* @param array $attributes The block attributes.
|
|
|
|
*
|
|
|
|
* @return string Returns the post content with latest posts added.
|
|
|
|
*/
|
|
|
|
function render_block_core_latest_posts( $attributes ) {
|
2020-06-26 15:33:47 +02:00
|
|
|
global $post, $block_core_latest_posts_excerpt_length;
|
2020-03-03 00:21:15 +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
|
|
|
$args = array(
|
2022-05-10 16:49:35 +02:00
|
|
|
'posts_per_page' => $attributes['postsToShow'],
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'order' => $attributes['order'],
|
|
|
|
'orderby' => $attributes['orderBy'],
|
|
|
|
'ignore_sticky_posts' => true,
|
|
|
|
'no_found_rows' => true,
|
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 );
|
|
|
|
|
2023-09-26 16:23:26 +02:00
|
|
|
if ( ! empty( $attributes['categories'] ) ) {
|
2020-06-26 15:33:47 +02:00
|
|
|
$args['category__in'] = array_column( $attributes['categories'], 'id' );
|
|
|
|
}
|
|
|
|
if ( isset( $attributes['selectedAuthor'] ) ) {
|
|
|
|
$args['author'] = $attributes['selectedAuthor'];
|
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
|
|
|
}
|
|
|
|
|
2023-02-07 08:04:52 +01:00
|
|
|
$query = new WP_Query();
|
2022-05-10 16:49:35 +02:00
|
|
|
$recent_posts = $query->query( $args );
|
|
|
|
|
|
|
|
if ( isset( $attributes['displayFeaturedImage'] ) && $attributes['displayFeaturedImage'] ) {
|
|
|
|
update_post_thumbnail_cache( $query );
|
|
|
|
}
|
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-10-13 15:10:30 +02:00
|
|
|
$post_link = esc_url( get_permalink( $post ) );
|
2022-04-12 17:12:47 +02:00
|
|
|
$title = get_the_title( $post );
|
|
|
|
|
|
|
|
if ( ! $title ) {
|
|
|
|
$title = __( '(no title)' );
|
|
|
|
}
|
2020-06-26 15:33:47 +02:00
|
|
|
|
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'];
|
|
|
|
}
|
|
|
|
|
2020-10-13 15:10:30 +02:00
|
|
|
$featured_image = get_the_post_thumbnail(
|
|
|
|
$post,
|
|
|
|
$attributes['featuredImageSizeSlug'],
|
|
|
|
array(
|
2022-04-12 17:12:47 +02:00
|
|
|
'style' => esc_attr( $image_style ),
|
2020-10-13 15:10:30 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
if ( $attributes['addLinkToFeaturedImage'] ) {
|
|
|
|
$featured_image = sprintf(
|
2022-04-12 17:12:47 +02:00
|
|
|
'<a href="%1$s" aria-label="%2$s">%3$s</a>',
|
|
|
|
esc_url( $post_link ),
|
|
|
|
esc_attr( $title ),
|
2020-10-13 15:10:30 +02:00
|
|
|
$featured_image
|
|
|
|
);
|
|
|
|
}
|
2020-02-10 23:33:27 +01:00
|
|
|
$list_items_markup .= sprintf(
|
|
|
|
'<div class="%1$s">%2$s</div>',
|
2022-04-12 17:12:47 +02:00
|
|
|
esc_attr( $image_classes ),
|
2020-10-13 15:10:30 +02:00
|
|
|
$featured_image
|
2020-02-10 23:33:27 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-12-13 23:22:38 +01:00
|
|
|
$list_items_markup .= sprintf(
|
2022-04-12 17:12:47 +02:00
|
|
|
'<a class="wp-block-latest-posts__post-title" href="%1$s">%2$s</a>',
|
|
|
|
esc_url( $post_link ),
|
2019-03-07 10:09:59 +01:00
|
|
|
$title
|
2018-12-13 23:22:38 +01:00
|
|
|
);
|
|
|
|
|
2020-06-26 15:33:47 +02:00
|
|
|
if ( isset( $attributes['displayAuthor'] ) && $attributes['displayAuthor'] ) {
|
|
|
|
$author_display_name = get_the_author_meta( 'display_name', $post->post_author );
|
|
|
|
|
|
|
|
/* translators: byline. %s: current author. */
|
|
|
|
$byline = sprintf( __( 'by %s' ), $author_display_name );
|
|
|
|
|
|
|
|
if ( ! empty( $author_display_name ) ) {
|
|
|
|
$list_items_markup .= sprintf(
|
|
|
|
'<div class="wp-block-latest-posts__post-author">%1$s</div>',
|
2022-04-12 17:12:47 +02:00
|
|
|
$byline
|
2020-06-26 15:33:47 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 ) ),
|
2022-04-12 17:12:47 +02:00
|
|
|
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
|
|
|
|
Update npm packages to latest versions for 6.4 beta 3.
The npm packages needed a further update for beta 3 in preparation for 6.4.
Props @richtabor, @mmaattiiaass, @tellthemachines, @mamaduka, @swissspidy, @scruffian, @andraganescu, @andrewserong, @mujuonly, @get_dave, @ntsekouras, @carlosgprim, @ramonopoly, @jameskoster, @wildworks, @aaronrobertshaw, @czapla, @santosguillamot, @artemiosans, @afercia, @glendaviesnz, @kevin940726, @mikachan, @siobhyb.
See #59411.
Built from https://develop.svn.wordpress.org/trunk@56808
git-svn-id: http://core.svn.wordpress.org/trunk@56320 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-10-09 19:24:24 +02:00
|
|
|
/*
|
|
|
|
* Adds a "Read more" link with screen reader text.
|
|
|
|
* […] is the default excerpt ending from wp_trim_excerpt() in Core.
|
|
|
|
*/
|
|
|
|
if ( str_ends_with( $trimmed_excerpt, ' […]' ) ) {
|
2024-05-23 21:39:28 +02:00
|
|
|
/** This filter is documented in wp-includes/formatting.php */
|
Update npm packages to latest versions for 6.4 beta 3.
The npm packages needed a further update for beta 3 in preparation for 6.4.
Props @richtabor, @mmaattiiaass, @tellthemachines, @mamaduka, @swissspidy, @scruffian, @andraganescu, @andrewserong, @mujuonly, @get_dave, @ntsekouras, @carlosgprim, @ramonopoly, @jameskoster, @wildworks, @aaronrobertshaw, @czapla, @santosguillamot, @artemiosans, @afercia, @glendaviesnz, @kevin940726, @mikachan, @siobhyb.
See #59411.
Built from https://develop.svn.wordpress.org/trunk@56808
git-svn-id: http://core.svn.wordpress.org/trunk@56320 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-10-09 19:24:24 +02:00
|
|
|
$excerpt_length = (int) apply_filters( 'excerpt_length', $block_core_latest_posts_excerpt_length );
|
|
|
|
if ( $excerpt_length <= $block_core_latest_posts_excerpt_length ) {
|
|
|
|
$trimmed_excerpt = substr( $trimmed_excerpt, 0, -11 );
|
|
|
|
$trimmed_excerpt .= sprintf(
|
2023-10-10 13:30:19 +02:00
|
|
|
/* translators: 1: A URL to a post, 2: Hidden accessibility text: Post title */
|
2024-05-23 21:39:28 +02:00
|
|
|
__( '… <a class="wp-block-latest-posts__read-more" href="%1$s" rel="noopener noreferrer">Read more<span class="screen-reader-text">: %2$s</span></a>' ),
|
Update npm packages to latest versions for 6.4 beta 3.
The npm packages needed a further update for beta 3 in preparation for 6.4.
Props @richtabor, @mmaattiiaass, @tellthemachines, @mamaduka, @swissspidy, @scruffian, @andraganescu, @andrewserong, @mujuonly, @get_dave, @ntsekouras, @carlosgprim, @ramonopoly, @jameskoster, @wildworks, @aaronrobertshaw, @czapla, @santosguillamot, @artemiosans, @afercia, @glendaviesnz, @kevin940726, @mikachan, @siobhyb.
See #59411.
Built from https://develop.svn.wordpress.org/trunk@56808
git-svn-id: http://core.svn.wordpress.org/trunk@56320 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-10-09 19:24:24 +02:00
|
|
|
esc_url( $post_link ),
|
|
|
|
esc_html( $title )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-15 13:03:35 +02:00
|
|
|
if ( post_password_required( $post ) ) {
|
|
|
|
$trimmed_excerpt = __( 'This content is password protected.' );
|
|
|
|
}
|
|
|
|
|
2019-09-19 17:19:18 +02:00
|
|
|
$list_items_markup .= sprintf(
|
2020-06-26 15:33:47 +02:00
|
|
|
'<div class="wp-block-latest-posts__post-excerpt">%1$s</div>',
|
2019-09-19 17:19:18 +02:00
|
|
|
$trimmed_excerpt
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( isset( $attributes['displayPostContent'] ) && $attributes['displayPostContent']
|
|
|
|
&& isset( $attributes['displayPostContentRadio'] ) && 'full_post' === $attributes['displayPostContentRadio'] ) {
|
2021-04-15 13:03:35 +02:00
|
|
|
|
2022-04-12 17:12:47 +02:00
|
|
|
$post_content = html_entity_decode( $post->post_content, ENT_QUOTES, get_option( 'blog_charset' ) );
|
2021-04-15 13:03:35 +02:00
|
|
|
|
|
|
|
if ( post_password_required( $post ) ) {
|
|
|
|
$post_content = __( 'This content is password protected.' );
|
|
|
|
}
|
|
|
|
|
2019-09-19 17:19:18 +02:00
|
|
|
$list_items_markup .= sprintf(
|
|
|
|
'<div class="wp-block-latest-posts__post-full-content">%1$s</div>',
|
2022-04-12 17:12:47 +02:00
|
|
|
wp_kses_post( $post_content )
|
2019-09-19 17:19:18 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
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 );
|
|
|
|
|
2023-02-07 08:04:52 +01:00
|
|
|
$classes = array( 'wp-block-latest-posts__list' );
|
2018-12-13 23:22:38 +01:00
|
|
|
if ( isset( $attributes['postLayout'] ) && 'grid' === $attributes['postLayout'] ) {
|
2023-02-07 08:04:52 +01:00
|
|
|
$classes[] = 'is-grid';
|
2018-12-13 23:22:38 +01:00
|
|
|
}
|
|
|
|
if ( isset( $attributes['columns'] ) && 'grid' === $attributes['postLayout'] ) {
|
2023-02-07 08:04:52 +01:00
|
|
|
$classes[] = 'columns-' . $attributes['columns'];
|
2018-12-13 23:22:38 +01:00
|
|
|
}
|
2018-12-14 11:55:01 +01:00
|
|
|
if ( isset( $attributes['displayPostDate'] ) && $attributes['displayPostDate'] ) {
|
2023-02-07 08:04:52 +01:00
|
|
|
$classes[] = 'has-dates';
|
2018-12-14 11:55:01 +01:00
|
|
|
}
|
2020-06-26 15:33:47 +02:00
|
|
|
if ( isset( $attributes['displayAuthor'] ) && $attributes['displayAuthor'] ) {
|
2023-02-07 08:04:52 +01:00
|
|
|
$classes[] = 'has-author';
|
|
|
|
}
|
|
|
|
if ( isset( $attributes['style']['elements']['link']['color']['text'] ) ) {
|
|
|
|
$classes[] = 'has-link-color';
|
2020-06-26 15:33:47 +02:00
|
|
|
}
|
|
|
|
|
2023-02-07 08:04:52 +01:00
|
|
|
$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classes ) ) );
|
2020-10-20 15:36:16 +02:00
|
|
|
|
2019-09-19 17:19:18 +02:00
|
|
|
return sprintf(
|
2020-10-20 15:36:16 +02:00
|
|
|
'<ul %1$s>%2$s</ul>',
|
|
|
|
$wrapper_attributes,
|
2018-12-13 23:22:38 +01:00
|
|
|
$list_items_markup
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers the `core/latest-posts` block on server.
|
2024-05-23 21:39:28 +02:00
|
|
|
*
|
|
|
|
* @since 5.0.0
|
2018-12-13 23:22:38 +01:00
|
|
|
*/
|
|
|
|
function register_block_core_latest_posts() {
|
2020-06-26 15:33:47 +02:00
|
|
|
register_block_type_from_metadata(
|
|
|
|
__DIR__ . '/latest-posts',
|
2018-12-13 23:22:38 +01:00
|
|
|
array(
|
|
|
|
'render_callback' => 'render_block_core_latest_posts',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
add_action( 'init', 'register_block_core_latest_posts' );
|
2020-06-26 15:33:47 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles outdated versions of the `core/latest-posts` block by converting
|
|
|
|
* attribute `categories` from a numeric string to an array with key `id`.
|
|
|
|
*
|
|
|
|
* This is done to accommodate the changes introduced in #20781 that sought to
|
|
|
|
* add support for multiple categories to the block. However, given that this
|
|
|
|
* block is dynamic, the usual provisions for block migration are insufficient,
|
|
|
|
* as they only act when a block is loaded in the editor.
|
|
|
|
*
|
|
|
|
* TODO: Remove when and if the bottom client-side deprecation for this block
|
|
|
|
* is removed.
|
|
|
|
*
|
2024-05-23 21:39:28 +02:00
|
|
|
* @since 5.5.0
|
|
|
|
*
|
2020-06-26 15:33:47 +02:00
|
|
|
* @param array $block A single parsed block object.
|
|
|
|
*
|
|
|
|
* @return array The migrated block object.
|
|
|
|
*/
|
|
|
|
function block_core_latest_posts_migrate_categories( $block ) {
|
|
|
|
if (
|
|
|
|
'core/latest-posts' === $block['blockName'] &&
|
|
|
|
! empty( $block['attrs']['categories'] ) &&
|
|
|
|
is_string( $block['attrs']['categories'] )
|
|
|
|
) {
|
|
|
|
$block['attrs']['categories'] = array(
|
|
|
|
array( 'id' => absint( $block['attrs']['categories'] ) ),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $block;
|
|
|
|
}
|
|
|
|
add_filter( 'render_block_data', 'block_core_latest_posts_migrate_categories' );
|