傻大憨

为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主题搭建网站的10大原因

简站WordPress主题因其语言支持、本地化服务、简洁易用、SEO优化、响应式设计、定制性、成本效益、社区和支持、安全性以及兼容性等特点,受到了许多海外华人网站搭建者的欢迎。

wordpress中文官网地址

wordpress中文官网地址是什么

外贸soho人自建独立站用wrodrpess的好处

WordPress为外贸SOHO人提供了一个强大的、成本效益高的自建独立站解决方案。

wordpress导入mysql数据库文件的方法及注意事项

在某些情况下,您可能需要将现有的 MySQL 数据库导入到新的 WordPress 安装中。本文将介绍如何导入 MySQL 数据库文件到 WordPress 以及需要注意的事项。

WordPress外贸独立站是怎么火起来的

由于平台站有种种的弊端,而WordPress外贸独立站,能更好的满意做跨境电商的外贸人的实际需求,所以,WordPress外贸独立站就这么火起来了。

wordpress比shopify的优势在哪里

WordPress和Shopify是两个不同的网站建设平台,它们各有各的优势和特点。下面我们将从多个方面对这两个平台进行比较,并探讨WordPress相对于Shopify的优势。