WordPress函数文档add_menu_page()

在后台管理界面添加菜单 描述 Add a top level menu page. Specifically,…

在后台管理界面添加菜单

描述

Add a top level menu page.

Specifically, creates a new top level menu section in the admin menu sidebar and registers a hook to callback your function for outputting the page content when the linked menu page is requested. Returns the $hookname.

用法

<?php
add_menu_page
$page_title$menu_title$capability$menu_slug$function$icon_url$position );
?>

参数

$page_title

(string) (必填) The text to be displayed in the title tags of the page when the menu is selected

默认值: None

$menu_title

(string) (必填) The on-screen name text for the menu

默认值: None

$capability

(string) (必填) The capability required for this menu to be displayed to the user. User levels are deprecated and should not be used here!

默认值: None

$menu_slug

(string) (必填) The slug name to refer to this menu by (should be unique for this menu). Prior to Version 3.0 this was called the file (or handle) parameter. If the function parameter is omitted, the menu_slug should be the PHP file that handles the display of the menu page content.

默认值: None

$function

(string) (可选) The function that displays the page content for the menu page.

默认值: None. Technically, the function parameter is optional, but if it is not supplied, then WordPress will assume that including the PHP file will generate the administration screen, without calling a function. Most plugin authors choose to put the page-generating code in a function within their main plugin file. In the event that the function parameter is specified, it is possible to use any string for the menu_slug parameter. This allows usage of pages such as ?page=my_super_plugin_page instead of ?page=my-super-plugin/admin-options.php.

The function must be referenced in one of two ways:

  1. if the function is a member of a class within the plugin it should be referenced as array( $this, ‘function_name’ )
  2. in all other cases, using the function name itself is sufficient

$icon_url

(string) (可选) The icon for this menu.

默认值: empty string

  • If you have a custom image file, you can use the plugin_dir_url( __FILE__ ) function to get the URL of your plugin directory and then add the image filename to it. Icons should be 20 x 20 pixels or smaller.
  • (WP 3.8+) If ‘dashicons-…’, a Dashicon is shown from the collection at https://developer.wordpress.org/resource/dashicons/. For example, the default “gear” symbol could be explicitly specified with ‘dashicons-admin-generic’.
  • (WP 3.8+) If ‘data:image/svg+xml;base64…’, the specified SVG data image is used as a CSS background.
  • If ‘none’ (previously ‘div’), the icon is replaced with an empty div you can style with CSS.
  • If ” (default), the “gear” Dashicon is shown (and menu-icon-generic is added to the CSS classes of the link).

$position

(integer) (可选) The position in the menu order this menu should appear. By default, if this parameter is omitted, the menu will appear at the bottom of the menu structure. The higher the number, the lower its position in the menu. WARNING: if two menu items use the same position attribute, one of the items may be overwritten so that only one item displays! Risk of conflict can be reduced by using decimal instead of integer values, e.g. 63.3 instead of 63 (Note: Use quotes in code, IE ‘63.3’).

默认值: bottom of menu structure

  • 2 – Dashboard
  • 4 – Separator
  • 5 – Posts
  • 10 – Media
  • 15 – Links
  • 20 – Pages
  • 25 – Comments
  • 59 – Separator
  • 60 – Appearance
  • 65 – Plugins
  • 70 – Users
  • 75 – Tools
  • 80 – Settings
  • 99 – Separator

For the Network Admin menu, the values are different:

  • 2 – Dashboard
  • 4 – Separator
  • 5 – Sites
  • 10 – Users
  • 15 – Themes
  • 20 – Plugins
  • 25 – Settings
  • 30 – Updates
  • 99 – Separator

返回值

string 

$hookname used internally to track menu page callbacks for outputting the page inside the global $menu array

示例

Add a custom menu item to the WordPress admin menu, for a user with administrator capability:

Method 1:

With this method the page-generating code should be located in myplugin/myplugin-admin.php:

Method 2:

注意

  • If you’re running into the “You do not have sufficient permissions to access this page” error, then you’ve hooked too early. The hook you should use is admin_menu.
  • If you only want to move existing admin menu items to different positions, you can use the admin_menu hook to unset menu items from their current positions in the global $menu and $submenu variables (which are arrays), and reset them elsewhere in the array.
  • This function takes a ‘capability’ (see Roles and Capabilities) 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.
  • If you are using the Settings API to save data, and need the user to be other than the administrator, will need to modify the permissions via the hook option_page_capability_{$option_group}, where $option_group is the same as option_group in register_setting() . Check out the Settings API.

Example allowing an editor to save data:

源文件

add_menu_page() 函数的代码位于 wp-admin/includes/plugin.php.

相关

Administration Menus:
add_menu_page(),
remove_menu_page(),
add_submenu_page(),
remove_submenu_page(),
add_dashboard_page(),
add_posts_page(),
add_media_page(),
add_links_page(),
add_pages_page(),
add_comments_page(),
add_theme_page(),
add_plugins_page(),
add_users_page(),
add_management_page(),
add_options_page()

  • 原文:http://codex.wordpress.org/Function_Reference/add_menu_page
类别:WordPress函数文档

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT