傻大憨

为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外贸建站从初级到高级的学习之路

  WordPress外贸建站教程提供了一个全面而系统的学习路径,从初级到高级的阶梯式学习让每位学员能够轻松掌… Continue reading WordPress外贸建站从初级到高级的学习之路

用wordpress模板几百元就可以自己建网站

使用WordPress模板搭建独立站是一种成本较低且操作简便的选择,尤其适合预算有限且希望快速上线的用户。

WordPress外贸建站平台在市场的独特优势

  在建设外贸网站的众多选择中,WordPress凭借其卓越的特性和广泛的应用,成为全球外贸建站平台的领导者。… Continue reading WordPress外贸建站平台在市场的独特优势

WordPress二次开发中常用到的一些变量和函数

WordPress二次开发中常用到的一些变量和函数,实际上WordPress还提供了许多其他有用的变量和函数,开发者可以根据具体的需求进行学习和使用。

WP根据文章ID判断是否有相册并调用

wordpress根据文章ID决断是否有相册并调用