_wp_posts_page_notice() – Outputs a notice when editing the page for posts (internal use only).

You appear to be a bot. Output may be restricted

Description

Outputs a notice when editing the page for posts (internal use only).

Usage

_wp_posts_page_notice();

Parameters

Returns

void

Source

File name: wordpress/wp-admin/includes/template.php
Lines:

1 to 9 of 9
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' ),
    )
  );
}
 

 View on GitHub View on Trac