_wp_block_editor_posts_page_notice

The timeline below displays how wordpress function _wp_block_editor_posts_page_notice has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.8

/**
 * Outputs a notice when editing the page for posts in the block editor (internal use only).
 *
 * @ignore
 * @since 5.8.0
 */
function _wp_block_editor_posts_page_notice()
{
    wp_add_inline_script('wp-notices', sprintf('wp.data.dispatch( "core/notices" ).createWarningNotice( "%s", { isDismissible: false } )', __('You are currently editing the page that shows your latest posts.')), 'after');
}