add_users_page( string $page_title, string $menu_title, string $capability, string $menu_slug, callable $function = '' )
Add submenu page to the Users/Profile 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_users_page( $page_title, $menu_title, $capability, $menu_slug, $function = '' ) {
if ( current_user_can('edit_users') )
$parent = 'users.php';
else
$parent = 'profile.php';
return add_submenu_page( $parent, $page_title, $menu_title, $capability, $menu_slug, $function );
}
Collapse full 源代码 code
View on Trac
相关函数
Uses
-
wp-admin/includes/plugin.php:
add_submenu_page() -
wp-includes/capabilities.php:
current_user_can()
User Contributed Notes
-
Skip to note content
You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note
Contributed by
Codex
Basic Example
Typical usage occurs in a function registered with the ‘admin_menu’ hook (see Adding Administration Menus):
/** * Register a new page under "Users". */ function wpdocs_my_users_menu() { add_users_page( __( 'My Plugin Users', 'textdomain' ), __( 'My Plugin', 'textdomain' ), 'read', 'my-unique-identifier', 'my_plugin_function' ); } add_action('admin_menu', 'wpdocs_my_users_menu');
你可能对这些文章感兴趣:
- wordpress函数esc_html_x()用法示例
- wordpress函数esc_html()用法示例
- wordpress函数esc_html_e()用法示例
- wordpress函数esc_attr_x()用法示例
- wordpress函数esc_attr__()用法示例
- wordpress函数esc_attr()用法示例
- wordpress函数esc_attr_e()用法示例
- wordpress函数enqueue_embed_scripts()用法示例
- wordpress函数ent2ncr()用法示例
- wordpress函数enqueue_comment_hotkeys_js()用法示例
- wordpress函数edit_user()用法示例
- wordpress函数email_exists()用法示例
- wordpress函数endElement()用法示例
- wordpress函数edit_term_link()用法示例
如有疑问,请前往问答中心反馈!
反馈