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是一个关注跨境电商、创业话题的网站。

外贸建站服务商WaiMaoYes

歪猫建站(WaiMaoYes)是一家专注于外贸网站建设的公司,提供从建站策划、网页设计、前后端开发到运营推广的… Continue reading 外贸建站服务商WaiMaoYes

WordPress自建站如何备份和恢复数据

请注意,备份和恢复数据时,确保选择正确的备份文件,以免覆盖或恢复错误的数据。

跨境电商独立站建完后没客户怎么办

跨境电商独立站建完后如果没有客户,可以采取以下策略来解决。可以逐步提升独立站的流量和订单量,从而解决没有客户的困境。

WordPress模板制作学习笔记

从今天正式开始

专业的朝鲜语网站建设公司:无极花建站

无极花建站作为一家专业的朝鲜语网站建设公司,凭借其专业的团队、定制化的服务和高质量的标准,致力于为客户提供优质的朝鲜语网站建设解决方案。

WordPress外贸建站从初级到高级的全面指南

  WordPress是构建外贸网站的强大平台,而深度学习WordPress建站技能是打造成功网站的关键。本文… Continue reading WordPress外贸建站从初级到高级的全面指南