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主题建立外贸网站具有许多优势,如出色的SEO优化功能、良好的用户体验、高度的安全性和灵活性等。这些优势可以帮助外贸企业更好地展示品牌形象、提高产品知名度,并吸引更多的潜在客户。因此,对于需要建立外贸网站的企业来说,简站WordPress主题是一个值得考虑的优秀解决方案。

WordPress调用指定父分类下的子分类

使用循环的嵌套来实现WordPress调用指定ID父分类下的子分类

WordPress外贸网站建设的成功要素与技术点

  WordPress作为一款强大的建站平台,为外贸企业提供了丰富的功能和灵活的定制选项。在这篇文章中,我们将… Continue reading WordPress外贸网站建设的成功要素与技术点

WordPress外贸网站建设的核心元素与实际案例

  在竞争激烈的外贸市场中,成功建设一个专业且高效的WordPress外贸网站需要精心策划和正确实施。本文将深… Continue reading WordPress外贸网站建设的核心元素与实际案例

WordPress外贸建站从初级到高级的全面指南

  WordPress是构建外贸网站的强大平台,而深度学习WordPress建站技能是打造成功网站的关键。本文… Continue reading WordPress外贸建站从初级到高级的全面指南