add_pages_page( string $page_title, string $menu_title, string $capability, string $menu_slug, callable $function = '' )
Add submenu page to the Pages 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_pages_page( $page_title, $menu_title, $capability, $menu_slug, $function = '' ) {
return add_submenu_page( 'edit.php?post_type=page', $page_title, $menu_title, $capability, $menu_slug, $function );
}
Collapse full 源代码 code
View on Trac
相关函数
Uses
-
wp-admin/includes/plugin.php:
add_submenu_page()
User Contributed Notes
-
Skip to note content
You must log in to vote on the helpfulness of this noteVote results for this note: -1You must log in to vote on the helpfulness of this note
Contributed by
Codex
Example
Typical usage occurs in a function registered with the ‘admin_menu’ hook (see Adding Administration Menus):
function wpdocs_my_plugin_menu() { add_pages_page( __( 'My Plugin Pages', 'textdomain' ), __( 'My Plugin','textdomain' ), 'read', 'my-unique-identifier', 'my_plugin_function'); } add_action( 'admin_menu', 'wpdocs_my_plugin_menu' );
你可能对这些文章感兴趣:
- wordpress函数edit_user()用法示例
- wordpress函数email_exists()用法示例
- wordpress函数endElement()用法示例
- wordpress函数edit_term_link()用法示例
- wordpress函数edit_post_link()用法示例
- wordpress函数edit_tag_link()用法示例
- wordpress函数edit_link()用法示例
- wordpress函数edit_post()用法示例
- wordpress函数edit_form_image_editor()用法示例
- wordpress函数edit_comment_link()用法示例
- wordpress函数edit_bookmark_link()用法示例
- wordpress函数edit_comment()用法示例
- wordpress函数drop_index()用法示例
- wordpress函数dynamic_sidebar()用法示例
如有疑问,请前往问答中心反馈!
反馈