_wp_posts_page_notice

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

WordPress Version: 6.4

/**
 * Outputs a notice when editing the page for posts (internal use only).
 *
 * @ignore
 * @since 4.2.0
 */
function _wp_posts_page_notice()
{
    wp_admin_notice(__('You are currently editing the page that shows your latest posts.'), array('type' => 'warning', 'additional_classes' => array('inline')));
}

WordPress Version: 5.8

/**
 * Outputs a notice when editing the page for posts (internal use only).
 *
 * @ignore
 * @since 4.2.0
 */
function _wp_posts_page_notice()
{
    printf('<div class="notice notice-warning inline"><p>%s</p></div>', __('You are currently editing the page that shows your latest posts.'));
}

WordPress Version: 4.2

/**
 * Output a notice when editing the page for posts (internal use only).
 *
 * @ignore
 * @since 4.2.0
 */
function _wp_posts_page_notice()
{
    echo '<div class="notice notice-warning inline"><p>' . __('You are currently editing the page that shows your latest posts.') . '</p></div>';
}