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作为企业官网是一个明智的选择,具有许多优势和潜力。

简洁、实用且安全的WordPress主题

简站WordPress主题是一个以简洁、实用、无插件和安全性高为特点的WordPress主题。它采用扁平化设计… Continue reading 简洁、实用且安全的WordPress主题

wordpress显示相同父分类目录下的所有子分类目录

调用某个父分类下的所有子分类名称

WordPress外贸整站源码的实际应用技术

  在WordPress外贸建站领域,深入了解整站源码的开发技法是提升网站定制性和性能的重要一环。本文将深入探… Continue reading WordPress外贸整站源码的实际应用技术

海外主机商与国内主机商的海外主机该怎么选?

选择一个稳定、高效的主机服务是至关重要的。目前市场上,外贸主机主要有两大来源:海外主机商和国内主机商的海外主机。

GGD独立站的10大优势

GGD独立站,即Google独立站,是一种依托Google生态系统进行营销推广的跨境电商独立站模式。