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
See also
Source
File: wp-admin/includes/deprecated.php
function screen_meta( $screen ) { $current_screen = get_current_screen(); $current_screen->render_screen_meta(); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.3.0 | Use WP_Screen::render_screen_meta() |
2.7.0 | Introduced. |