• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
WordPress core a2z

WordPress core a2z

WordPress core only

  • Home
  • Plugins
  • Blocks
  • Shortcodes
  • APIs
  • Classes
  • Files
  • Hooks
  • Sitemap
  • Blog
Home / APIs / get_admin_page_title() – Gets the title of the current admin page.

You appear to be a bot. Output may be restricted

Description

Gets the title of the current admin page.

Usage

$string = get_admin_page_title();

Parameters

Returns

string The title of the current admin page.

Source

File name: wordpress/wp-admin/includes/plugin.php


Lines:

1 to 72 of 72
function get_admin_page_title() {
  global $title, $menu, $submenu, $pagenow, $plugin_page, $typenow;

  if ( ! empty( $title ) ) {
    return $title;
  }

  $hook = get_plugin_page_hook( $plugin_page, $pagenow );

  $parent  = get_admin_page_parent();
  $parent1 = $parent;

  if ( empty( $parent ) ) {
    foreach ( (array) $menu as $menu_array ) {
      if ( isset( $menu_array[3] ) ) {
        if ( $menu_array[2] === $pagenow ) {
          $title = $menu_array[3];
          return $menu_array[3];
        } elseif ( isset( $plugin_page ) && $plugin_page === $menu_array[2] && $hook === $menu_array[5] ) {
          $title = $menu_array[3];
          return $menu_array[3];
        }
      } else {
        $title = $menu_array[0];
        return $title;
      }
    }
  } else {
    foreach ( array_keys( $submenu ) as $parent ) {
      foreach ( $submenu[ $parent ] as $submenu_array ) {
        if ( isset( $plugin_page )
          && $plugin_page === $submenu_array[2]
          && ( $pagenow === $parent
            || $plugin_page === $parent
            || $plugin_page === $hook
            || 'admin.php' === $pagenow && $parent1 !== $submenu_array[2]
            || ! empty( $typenow ) && "$pagenow?post_type=$typenow" === $parent )
          ) {
            $title = $submenu_array[3];
            return $submenu_array[3];
        }

        if ( $submenu_array[2] !== $pagenow || isset( $_GET['page'] ) ) { // Not the current page.
          continue;
        }

        if ( isset( $submenu_array[3] ) ) {
          $title = $submenu_array[3];
          return $submenu_array[3];
        } else {
          $title = $submenu_array[0];
          return $title;
        }
      }
    }
    if ( empty( $title ) ) {
      foreach ( $menu as $menu_array ) {
        if ( isset( $plugin_page )
          && $plugin_page === $menu_array[2]
          && 'admin.php' === $pagenow
          && $parent1 === $menu_array[2]
        ) {
            $title = $menu_array[3];
            return $menu_array[3];
        }
      }
    }
  }

  return $title;
}
 

 View on GitHub View on Trac

Published: 25th November 2019 | Last updated: 9th December 2020

Primary Sidebar

Information

Function name: get_admin_page_title
Plugin ref: WordPress
Version: 5.6
Sourcefile: wp-admin/includes/plugin.php
File ref: wp-admin/includes/plugin.php
Deprecated?: No
API Letters: A,G,P,T

Footer

WP-a2z
WordPress core a2z
WordPress core only
WordPress 5.6
WordPress a2z
WordPress core a2z
Genesis Theme Framework a2z
Jetpack a2z
WordPress develop tests
Easy Digital Downloads a2z
WooCommerce a2z
Yoast SEO a2z
WordPress Blocks

Site:  core.wp-a2z.org
© Copyright WP-a2z 2014-2021. All rights reserved.


Website designed and developed by Herb Miller
Proudly powered by WordPress and oik plugins

  • Home
  • Blog
  • Sitemap
  • Sites