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建站技能是打造成功网站的关键。本文… Continue reading WordPress外贸建站从初级到高级的全面指南

用AI视频工具HeyGen可以给产品做视频介绍

做外贸跨境电商的人有福了 最近发现一款非常容易上手的AI视频工具HeyGen,通过HeyGen,可以在上传产品… Continue reading 用AI视频工具HeyGen可以给产品做视频介绍

wordpress自定义后台右下角文字

把wordpress后台修改的更个性化,可以通过下面的方式。

woocommerce独立站与wordpress独立站的最大区别是什么

WordPress独立站可以是任何类型的网站,而WooCommerce独立站则主要聚焦于电商功能的实现。

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

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

把Emojis表情符号从wordpress头部去掉

如果你的网站不需要显示mojis表情符号,可以通过在functions.php文件中添加一段代码来去掉