diff --git a/src/wp-includes/blocks/post-template.php b/src/wp-includes/blocks/post-template.php
index 2c7502ca3b..df287acae7 100644
a
|
b
|
function block_core_post_template_uses_featured_image( $inner_blocks ) { |
36 | 36 | * |
37 | 37 | * @since 6.3.0 Changed render_block_context priority to `1`. |
38 | 38 | * |
| 39 | * @global WP_Query $wp_query WordPress Query object. |
| 40 | * |
39 | 41 | * @param array $attributes Block attributes. |
40 | 42 | * @param string $content Block default content. |
41 | 43 | * @param WP_Block $block Block instance. |
diff --git a/src/wp-includes/interactivity-api/interactivity-api.php b/src/wp-includes/interactivity-api/interactivity-api.php
index 548fcc3638..cd35e00d75 100644
a
|
b
|
add_filter( 'render_block_data', 'wp_interactivity_process_directives_of_interac |
74 | 74 | * It provides access to the WP_Interactivity_API instance, creating one if it |
75 | 75 | * doesn't exist yet. |
76 | 76 | * |
77 | | * @global WP_Interactivity_API $wp_interactivity |
78 | | * |
79 | 77 | * @since 6.5.0 |
80 | 78 | * |
| 79 | * @global WP_Interactivity_API $wp_interactivity |
| 80 | * |
81 | 81 | * @return WP_Interactivity_API The main WP_Interactivity_API instance. |
82 | 82 | */ |
83 | 83 | function wp_interactivity(): WP_Interactivity_API { |