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
This commit is contained in:
68
wp-includes/block-bindings/post-data.php
Normal file
68
wp-includes/block-bindings/post-data.php
Normal file
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
/**
|
||||
* Post Data source for Block Bindings.
|
||||
*
|
||||
* @since 6.9.0
|
||||
* @package WordPress
|
||||
* @subpackage Block Bindings
|
||||
*/
|
||||
|
||||
/**
|
||||
* Gets value for Post Data source.
|
||||
*
|
||||
* @since 6.9.0
|
||||
* @access private
|
||||
*
|
||||
* @param array $source_args Array containing arguments used to look up the source value.
|
||||
* Example: array( "key" => "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' );
|
||||
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user