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

WMD独立站与DTC独立站有什么区别

如果你的目标是低成本快速启动,WMD模式可能更适合;如果希望建立长期品牌价值,DTC模式是更好的选择。

在中山建外贸独立站不找本地的公司建可以吗

有多种外贸独立站建设平台和自助建站工具可供选择,这些平台和工具可以帮助企业快速搭建和管理自己的外贸网站,而无需依赖本地公司。

把WordPress网站文章时间格式改为“几分钟前”

刚才访问一个网站时,发现这个网站文章发布时间并不是直接显示为具体时间,而是显示为“几分钟前”,大半夜的,不可能那么多文章都是几分钟前发布的,于是找了一下相关的教程,发现要实现这个挺简单的。

wordpress子分类使用父分类模板

wordpress子分类继承使用父分类模板

如何添加wordpress文章形式

wordpress的功能很强,通过文章形式,可以让wordpress文章,有多种形式来展示。并不是所有的主题都有wordpress的文章形式,如果想有文章形式,将以下代码添加到 functions.php文件中即可。

WordPress外贸建站课从基础到高级

  WordPress外贸建站课程是学习和掌握建站技能的关键途径。这一完整的课程旨在让学员从基础知识逐步深入,… Continue reading WordPress外贸建站课从基础到高级