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

天津进出品贸易公司官网建站方案

在实施建站方案之前,建议与专业的建站公司或团队进行沟通和咨询,获取更详细和准确的建议。

wordpress sql文件导入mysql数据库时常见问题分析

当涉及到将数据从 SQL 文件导入到 WordPress 数据库时,可能会遇到各种错误。

wordpress禁用xmlrpc

将以下代码插入到functions.php文件中即可

WordPress外贸建站需要匹配的关键特性

  在建设WordPress外贸网站时,选择适合业务需求的核心功能是确保网站成功的关键之一。本文将揭秘Word… Continue reading WordPress外贸建站需要匹配的关键特性