add_utility_page()
add_utility_page( string $page_title, string $menu_titl…
add_utility_page( string $page_title, string $menu_title, string $capability, string $menu_slug, callable $function = ”, string $icon_url = ” )
在“实用程序”部分添加顶级菜单页。
Add a top-level menu page in the ‘utility’ section.
在“实用程序”部分添加顶级菜单页。
Add a top-level menu page in the ‘utility’ section.
目录锚点:#说明#参数#返回#源码
说明(Description)
另见函数 add_menu_page()
参数(Parameters)
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| $page_title | (string) | 必需 | 选择菜单时要在页面标题标记中显示的文本。 |
| $menu_title | (string) | 必需 | 用于菜单的文本。 |
| $capability | (string) | 必需 | 向用户显示此菜单所需的功能。 |
| $menu_slug | (string) | 必需 | 用于引用此菜单的slug名称(对于此菜单应是唯一的)。 |
| $function | (callable) | 可选 | 要调用以输出此页内容的函数。 |
| $icon_url | (string) | 可选 | 用于此菜单的图标的url。 |
返回(Return)
(string)结果页的hook_后缀。
源码(Source)
/**
* 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.
*
* @global int $_wp_last_utility_menu
*
* @param string $page_title The text to be displayed in the title tags of the page when the menu is selected
* @param string $menu_title The text to be used for the menu
* @param string $capability The capability required for this menu to be displayed to the user.
* @param string $menu_slug The slug name to refer to this menu by (should be unique for this menu)
* @param callback $function The function to be called to output the content for this page.
* @param string $icon_url The url to the icon to be used for this menu
*
* @return string The resulting page's hook_suffix
*/
function add_utility_page( $page_title, $menu_title, $capability, $menu_slug, $function = '', $icon_url = '') {
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);
}| 更新版本 | 源码位置 | 使用 | 被使用 |
|---|---|---|---|
| 4.5.0 | wp-admin/includes/deprecated.php:1463 | 0 | 2 |
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

还没有任何评论,赶紧来占个楼吧!