Home / APIs / add_utility_page() – Add a top-level menu page in the ‘utility’ section.

You appear to be a bot. Output may be restricted

Description

Add a top-level menu page in the 'utility' section.

This function takes a capability which will be used to determine whether or not a page is included in the menu. The function which is hooked in to handle the output of the page must check that the user has the required capability as well.

Usage

$string = add_utility_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url );

Parameters

$page_title
( string ) required – The text to be displayed in the title tags of the page when the menu is selected.
$menu_title
( string ) required – The text to be used for the menu.
$capability
( string ) required – The capability required for this menu to be displayed to the user.
$menu_slug
( string ) required – The slug name to refer to this menu by (should be unique for this menu).
$function
( callable ) optional – The function to be called to output the content for this page.
$icon_url
( string ) optional – The url to the icon to be used for this menu.

Returns

string The resulting page's hook_suffix.

Source

File name: wordpress/wp-admin/includes/deprecated.php
Lines: 1 to 9 of 9

function add_utility_page( $page_title, $menu_title, $capability, $menu_slug, $function = '', $icon_url = '') {
  _deprecated_function( __FUNCTION__, '4.5.0', 'add_menu_page()' );

  global $_wp_last_utility_menu;

  $_wp_last_utility_menu++;

  return add_menu_page($page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $_wp_last_utility_menu);
}
 

 View on GitHub View on Trac

Published: 10th March 2017 | Last updated: 10th March 2017

Information

Function name: add_utility_page
Plugin ref: WordPress
Version: 5.0.3
Sourcefile: wp-admin/includes/deprecated.php
File ref: wp-admin/includes/deprecated.php
Deprecated?: No
API Letters: A,P,U

  • Plugins
  • Themes
  • Shortcodes
  • APIs
  • Files
  • Hooks
  • Classes
  • Home
  • Sites
  • Sitemap
  • Blog
oik-plugins WordPress a2z
WordPress Dynamic API Reference

Site:  wp-a2z.org
© Copyright oik-plugins 2014-2019. All rights reserved.


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