get_admin_page_title()
Gets the title of the current admin page.
No Hooks.
Return
String
. The title of the current admin page.
Usage
get_admin_page_title();
Examples
#1 Title for the created subpage in the "Tools" menu item
This example shows how to dynamically output the header of the admin page. The header in this case is specified when registering the page with add_submenu_page().
<?php // Add a submenu page to the "Tools" menu of the admin panel add_action( 'admin_menu', function(){ add_submenu_page( 'themes.php', 'My Tools page', 'My Tools', 'edit_others_posts', 'theme_docs', 'my_tools_submenu_page_callback' ); } ); function my_tools_submenu_page_callback(){ ?> <div class="wrap"> <h2><?= esc_html( get_admin_page_title() ) ?></h2> Page Content here... </div> <?php }
Notes
- Global. String. $title
- Global. Array. $menu
- Global. Array. $submenu
- Global. String. $pagenow The filename of the current screen.
- Global. String. $typenow The post type of the current screen.
- Global. String. $plugin_page
Changelog
Since 1.5.0 | Introduced. |