my first php page,wordpress函数add_pages_page()用法示例

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' );

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值