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

The best WordPress service company in China

Jianzhanpress not only excels in WordPress theme design, but also has significant advantages in the field of foreign trade website construction, which can help enterprises achieve success in the international market.

给wordpress添加自定义字段的分类筛选功能

这段代码创建了一个简单的筛选表单,用户可以在其中输入自定义字段的键和值,然后点击“筛选”按钮来提交表单。

wordpress调用全站热门文章

调用全站热门wordpress文章代码

Elementor优点很明显 缺点很致命

Elementor是一个非常强大的可视化网站建设工具,它可以让用户通过拖拽和编辑来快速构建网站。虽然Elementor具有许多优点,但是它也存在一些缺点。下面我将从多个角度来探讨Elementor的优缺点。

wordpress子页面调用父页面标题和链接

wordpress子页面调用父页面标题和链接

WordPress外贸建站课程的深度专业之道

  随着国际贸易的不断发展,拥有一流的WordPress外贸建站技能变得至关重要。在这篇文章中,我们将探讨高级… Continue reading WordPress外贸建站课程的深度专业之道