傻大憨

为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主题是否要看支持不支持Elementor

先搞清楚Elementor是什么非常重要,没搞清楚前,不要盲目瞎跟风。

删除wordpress版本号代码

一段代码就可以删除wordpress的版本号,掌握这些就可以自己制作主题系列。

wordpress建站公司如何选择

选择一家合适的WordPress建站公司需要考虑多个方面,包括公司的背景和实力、需求和预算、技术实力和服务质量、设计师和开发人员的经验、合同和项目细节、网站的安全性和稳定性以及未来的扩展性和升级性等。

歪猫建站公司有哪些优势

歪猫建站(WaimaoYes)是一家专业的外贸建站公司,通过提供全方位的服务和先进的技术支持,帮助外贸企业提升品牌形象和市场竞争力。

WordPress外贸建站服务成功案例揭秘

  在当今数字化时代,用户体验被认为是成功建站的关键因素之一。通过WordPress外贸建站服务,许多企业成功… Continue reading WordPress外贸建站服务成功案例揭秘

WordPress建站流程详解(分七个步骤)

如果你打算使用WordPress搭建自己的网站,那么本文将为你提供一份详细的建站流程。通过以上七个步骤,你应该能够成功地使用WordPress搭建自己的网站。