傻大憨

为wordpress后台添加一个自定义页面

非插件线代码方式实现为wordpress后台添加一个自定义页面

参数如下:

$page_title (string) – The text to be displayed in the title tags of the page when the menu is selected.
$menu_title (string) – The text to be used for the menu.
$capability (string) – The capability required for this menu to be displayed to the user.
$menu_slug (string) – The unique slug name to refer to this menu.
$callback (callable, optional) – The function to be called to output the content for this page. Default: ”
$position (int, optional) – The position in the menu order this item should appear. Default: null

将下面代码添加到functions.php中即可实现

function my_plugin_menu() {
    add_dashboard_page('My Custom Dashboard', 'Custom Dashboard', 'read', 'wodepress-custom-dashboard', 'wodepress_custom_dashboard_output');
}
add_action('admin_menu', 'my_plugin_menu');

function wodepress_custom_dashboard_output() {
    echo 'Welcome to My Custom Dashboard!';
}

所有登陆后台的用户可见

function my_plugin_menu() {
    add_dashboard_page('My Custom Dashboard', 'Custom Dashboard', 'edit_posts', 'wodepress-custom-dashboard', 'wodepress_custom_dashboard_output');
}
add_action('admin_menu', 'my_plugin_menu');

function wodepress_custom_dashboard_output() {
    echo 'Welcome to My Custom Dashboard!';
}

拥有编辑权限的用户可见

Published
Categorized as 建站知识 Tagged ,

By 傻大憨

shadahan.com是一个关注跨境电商、创业话题的网站。

一站式解决方案为你打造专业wordpress网站

  在当今数字化时代,对于外贸企业而言,拥有一个专业、易于管理的网站是取得成功的关键之一。然而,对于网络小白来… Continue reading 一站式解决方案为你打造专业wordpress网站

wordpress搜索结果只关联标题

wordpress搜索结果只关联标题,不关联内容。

WordPress外贸建站平台在市场的独特优势

  在建设外贸网站的众多选择中,WordPress凭借其卓越的特性和广泛的应用,成为全球外贸建站平台的领导者。… Continue reading WordPress外贸建站平台在市场的独特优势

wordpress创建悬浮右侧的在线客服咨询

自己动手开发包含了QQ咨询和微信咨询的悬浮在右侧的在线客服咨询台。

WP最主题

WP最主题以简洁、高效的风格著称,其开发的主题通常具有快速的加载速度和良好的兼容性。适合追求简洁设计、注重网站性能的用户,能够帮助用户快速搭建出专业且高效的网站。

建站用帝国CMS好还是WordPress好

帝国CMS和WordPress各有其优势与不足,用户在选择时应根据自身需求进行权衡。