Warning: This function has been deprecated. Use WP_Screen::render_screen_meta() instead.

screen_meta() WordPress Function

The screen_meta() function is used to display meta information for the current screen. This function is typically called by plugin and theme developers to output information about the current screen in the admin interface.

screen_meta( $screen ) #

Renders the screen’s help.


Description

Top ↑

See also


Top ↑

Source

File: wp-admin/includes/deprecated.php

function screen_meta( $screen ) {
	$current_screen = get_current_screen();
	$current_screen->render_screen_meta();
}


Top ↑

Changelog

Changelog
VersionDescription
3.3.0Use WP_Screen::render_screen_meta()
2.7.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More