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建站公司

知识共享署名4.0许可

建网站过程中经常使用到的知识共享署名CC4.0许可,来自署名 4.0 国际官网的具体规定的内容介绍。

WordPress外贸建站课程深度探讨

  在数字化时代,拥有一个专业的网站对于企业和个体创业者而言至关重要。WordPress外贸建站课程为零基础者… Continue reading WordPress外贸建站课程深度探讨

探讨WP外贸建站服务的最佳实践

  在全球化的商业环境中,拥有一个专业、高效的外贸网站对企业成功至关重要。WordPress作为一个强大而灵活… Continue reading 探讨WP外贸建站服务的最佳实践

WordPress外贸建站服务成功案例揭秘

  在当今数字化时代,用户体验被认为是成功建站的关键因素之一。通过WordPress外贸建站服务,许多企业成功… Continue reading WordPress外贸建站服务成功案例揭秘

同一个数据库安装两个或多个wordpress网站方法

同一个数据库内怎么安装多个wordpress网站。

WordPress外贸建站平台的最佳实践

  在构建WordPress外贸网站时,深入了解和正确应用核心功能是确保网站成功的关键。本文将解析WordPr… Continue reading WordPress外贸建站平台的最佳实践