_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 6 of 6
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.' )
  );
}
 

 View on GitHub View on Trac