傻大憨

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

SOHO建站的优势分析

SOHO建站(Small Office/Home Office建站)是指小型办公室或家庭办公室通过建立网站来开展业务。

上海WordPress

上海WordPress致力于成为中小微企业在互联网上的坚强后盾,帮助他们更好地展示自己,吸引更多的客户,实现业务增长。

wordpress禁用Feed

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

外贸独立站建站如何选择一个靠谱的建站服务商

选择建站服务商时,建议多方面进行考察和比较,甚至可以要求试用或原型设计,以确保最终选择的服务商能够满足你的需求并帮助你实现业务目标。

wordpress调用全站热门文章

调用全站热门wordpress文章代码

B2B独立站与B2C独立站的区别是什么 哪个更好

B2B独立站更适合需要建立长期合作关系、强调专业性和信任感的企业,而B2C独立站更适合直接面向消费者、注重品牌形象和消费者体验的企业。