傻大憨

为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主题资源网站推荐

推荐一个英文wordpress建站资源网站和一个中文wordpress建站模板网站。

wordpress不同栏目调用不同的头部header模板

在WordPress中,可以使用不同的顶部模板来展示不同栏目的内容

挑选适合你业务的建站引擎

  在选择外贸建站程序时,挑选适合你业务需求的建站引擎是至关重要的一步。本文将为您提供一份全面的选购指南,帮助… Continue reading 挑选适合你业务的建站引擎

使用Elementor搭建网站的缺点

虽然Elementor是一个非常流行的WordPress页面构建器,但它也存在一些缺点。这些缺点可能导致非专业人员在使用Elementor时遇到困难,或者无法正确地构建和优化网站。

WordPress外贸整站源码解析与应用技巧

WordPress作为一个流行的建站平台,在外贸领域也被广泛应用。全面掌握WordPress外贸整站源码是打造… Continue reading WordPress外贸整站源码解析与应用技巧

建一个外贸B2B独立站的费用预算1000元够吗

1000元可以作为建立外贸B2B独立站的最低预算起点,但要实现一个功能齐全、用户体验良好的站点,实际投入可能需要远超此数额。