add_theme_page( string $page_title, string $menu_title, string $capability, string $menu_slug, callable $function = '' )
Add submenu page to the Appearance main menu.
描述
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.
参数
- $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.Default value: ”
返回值
(false|string) The resulting page’s hook_suffix, or false if the user does not have the capability required.
源代码
File: wp-admin/includes/plugin.php
function add_theme_page( $page_title, $menu_title, $capability, $menu_slug, $function = '' ) {
return add_submenu_page( 'themes.php', $page_title, $menu_title, $capability, $menu_slug, $function );
}
Collapse full 源代码 code
View on Trac
相关函数
Uses
-
wp-admin/includes/plugin.php:
add_submenu_page()
Used By
-
wp-admin/custom-header.php:
Custom_Image_Header::init() -
wp-admin/custom-background.php:
Custom_Background::init()
User Contributed Notes
你可能对这些文章感兴趣:
- wordpress函数category_description()用法示例
- wordpress函数atom_enclosure()用法示例
- wordpress函数apply_filters_ref_array()用法示例
- wordpress函数apply_filters_deprecated()用法示例
- wordpress函数apply_filters()用法示例
- wordpress函数allowed_tags()用法示例
- wordpress函数admin_url()用法示例
- wordpress函数add_utility_page()用法示例
- wordpress函数add_users_page()用法示例
- wordpress函数add_theme_support()用法示例
- wordpress函数add_submenu_page()用法示例
- wordpress函数add_shortcode()用法示例
- wordpress函数add_settings_section()用法示例
- wordpress函数add_settings_field()用法示例
如有疑问,请前往问答中心反馈!
反馈