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禁用Rest API

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

海外市场网络营销专业公司

北京无极花是一家专注于韩语建站和韩国市场网络营销的专业公司。凭借对韩国市场的深入了解和丰富的建站经验,无极花致力于为客户提供从网站搭建到网络营销的一站式解决方案。

WordPress外贸建站服务的最佳实践与管理

  在竞争激烈的国际市场中,拥有一款优秀的WordPress外贸建站是提升业务效益的关键。本文将分享一些最佳实… Continue reading WordPress外贸建站服务的最佳实践与管理

定制WordPress外贸主题需要注意的事项

定制WordPress外贸主题时,企业需要注意明确目标与定位、选择可靠的主题开发商、考虑多语言支持、优化用户体验、注重SEO优化、确保安全与稳定性、关注灵活性与可扩展性以及进行全面的测试与调试。

GGD独立站与DTC独立站的区别

GGD独立站(可能指“工厂直销独立站”或“Global Goods Direct”)与DTC独立站(Direct-to-Consumer,直接面向消费者)在商业模式、目标受众和运营策略上存在显著差异。