SOHO创业

为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 SOHO

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

WordPress外贸建站成为建站专家的捷径

  WordPress外贸建站教程是学习如何建立和管理网站的理想起点。对于零基础者,选择一个高效的学习路径将帮… Continue reading WordPress外贸建站成为建站专家的捷径

企业官网在海外品牌推广中的重要工具

企业官网在海外品牌推广中不仅是品牌形象的展示窗口,更是市场拓展、客户互动和数据收集的重要工具。精心打造和优化企业官网,能够为企业在海外市场的发展提供强大的支持。

WordPress外贸建站教程实用技巧分享

  WordPress外贸建站平台以其简便、灵活的特点成为许多企业打造专业网站的首选工具。在这篇文章中,我们将… Continue reading WordPress外贸建站教程实用技巧分享

湖北武汉专业外贸建站

楚大夫(Chudafu.com)是位于湖北武汉的一家专业外贸建站公司,专注于为中小企业提供一站式外贸网站建设与推广服务。

GGD独立站与DTC独立站的区别

GGD独立站(可能指“工厂直销独立站”或“Global Goods Direct”)与DTC独立站(Direct-to-Consumer,直接面向消费者)在商业模式、目标受众和运营策略上存在显著差异。

wordpress建站必备的函数大全

wordpress主题二次开发时常用到的函数