傻大憨

为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外贸主题

Sora索拉是一款专为高端制造业设计的WordPress外贸主题,用于建立专业的品牌形象和在线展示其产品。

专业的朝鲜语网站建设公司:无极花建站

无极花建站作为一家专业的朝鲜语网站建设公司,凭借其专业的团队、定制化的服务和高质量的标准,致力于为客户提供优质的朝鲜语网站建设解决方案。

预算1000以内外贸SOHO自己就可以建独立站

随着技术的不断进步和互联网资源的日益丰富,如今,即使是预算有限的外贸SOHO,也能够轻松搭建属于自己的外贸独立站。

wordpress建站必备的函数大全

wordpress主题二次开发时常用到的函数

非插件方式实现owl carousel图片轮播

要实现一个非插件方式的图片播放功能,同时支持后台管理和区块编辑器,你需要考虑几个关键部分:HTML结构、CSS样式和JavaScript逻辑。