From b8cf69052d833cb88bde17d2c25bbb3090971d75 Mon Sep 17 00:00:00 2001 From: Bernhard Reiter Date: Tue, 5 Aug 2025 13:54:35 +0000 Subject: [PATCH] Block Bindings: Add `core/post-data` source. Add a new Block Bindings source, `core/post-data`, which exposes `date` and `modified` fields for now -- reflecting the publish date and the last modified date of the post, respectively. The source could be subsequently extended to include other fields associated with a post object, such as title, featured image, etc. Props bernhard-reiter. Closes #63741. Built from https://develop.svn.wordpress.org/trunk@60539 git-svn-id: http://core.svn.wordpress.org/trunk@59875 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/block-bindings/post-data.php | 68 ++++++++++++++++++++++++ wp-includes/class-wp-block.php | 1 + wp-includes/version.php | 2 +- wp-settings.php | 1 + 4 files changed, 71 insertions(+), 1 deletion(-) create mode 100644 wp-includes/block-bindings/post-data.php diff --git a/wp-includes/block-bindings/post-data.php b/wp-includes/block-bindings/post-data.php new file mode 100644 index 0000000000..37699a3faf --- /dev/null +++ b/wp-includes/block-bindings/post-data.php @@ -0,0 +1,68 @@ + "foo" ). + * @param WP_Block $block_instance The block instance. + * @return mixed The value computed for the source. + */ +function _block_bindings_post_data_get_value( array $source_args, $block_instance ) { + if ( empty( $source_args['key'] ) ) { + return null; + } + + if ( empty( $block_instance->context['postId'] ) ) { + return null; + } + $post_id = $block_instance->context['postId']; + + // If a post isn't public, we need to prevent unauthorized users from accessing the post data. + $post = get_post( $post_id ); + if ( ( ! is_post_publicly_viewable( $post ) && ! current_user_can( 'read_post', $post_id ) ) || post_password_required( $post ) ) { + return null; + } + + if ( 'date' === $source_args['key'] ) { + return esc_attr( get_the_date( 'c', $post_id ) ); + } + + if ( 'modified' === $source_args['key'] ) { + // Only return the modified date if it is later than the publishing date. + if ( get_the_modified_date( 'U', $post_id ) > get_the_date( 'U', $post_id ) ) { + return esc_attr( get_the_modified_date( 'c', $post_id ) ); + } else { + return ''; + } + } +} + +/** + * Registers Post Data source in the block bindings registry. + * + * @since 6.9.0 + * @access private + */ +function _register_block_bindings_post_data_source() { + register_block_bindings_source( + 'core/post-data', + array( + 'label' => _x( 'Post Data', 'block bindings source' ), + 'get_value_callback' => '_block_bindings_post_data_get_value', + 'uses_context' => array( 'postId' ), + ) + ); +} + +add_action( 'init', '_register_block_bindings_post_data_source' ); diff --git a/wp-includes/class-wp-block.php b/wp-includes/class-wp-block.php index fcbc749cec..085931beb4 100644 --- a/wp-includes/class-wp-block.php +++ b/wp-includes/class-wp-block.php @@ -285,6 +285,7 @@ class WP_Block { 'core/heading' => array( 'content' ), 'core/image' => array( 'id', 'url', 'title', 'alt' ), 'core/button' => array( 'url', 'text', 'linkTarget', 'rel' ), + 'core/post-date' => array( 'datetime' ), ); // If the block doesn't have the bindings property, isn't one of the supported diff --git a/wp-includes/version.php b/wp-includes/version.php index 287d5cda17..0fd27bde4e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60538'; +$wp_version = '6.9-alpha-60539'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-settings.php b/wp-settings.php index 60ffc307c5..3892b8cd33 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -364,6 +364,7 @@ require ABSPATH . WPINC . '/class-wp-classic-to-block-menu-converter.php'; require ABSPATH . WPINC . '/class-wp-navigation-fallback.php'; require ABSPATH . WPINC . '/block-bindings.php'; require ABSPATH . WPINC . '/block-bindings/pattern-overrides.php'; +require ABSPATH . WPINC . '/block-bindings/post-data.php'; require ABSPATH . WPINC . '/block-bindings/post-meta.php'; require ABSPATH . WPINC . '/blocks.php'; require ABSPATH . WPINC . '/blocks/index.php';