WordPress 用户仪表板自定义左侧菜单示例代码需要帮助

发布于 2024-12-12 14:15:31 字数 553 浏览 0 评论 0原文

我需要帮助在其他角色用户仪表板上显示左侧菜单项。我正在使用插件中的代码来添加自定义管理菜单项。

add_action('admin_menu', 'wp_hotlel_admin_menu');
  function wp_hotlel_admin_menu() {

  add_menu_page('Page Title', 'Menu Title', 10,'unique-slug','ChainForm_page');  

  function ChainForm_page() {
  echo "test";
  } 

菜单正在管理仪表板上显示并运行。但没有显示在其他用户的仪表板上。我正在通过 WordPress 基本用户登录部分登录。

我添加了下面的行,

global $wp_roles;

   $wp_roles->add_cap('Subscriber','wp-wall');

订阅者是我的用户类型。一般用户自定义菜单中仍然不显示菜单项。

请帮我解决这个问题。

提前致谢。

I need help to show the left menu item on other role users dashboard. I am using the code at plugin to add the custom admin menu items .

add_action('admin_menu', 'wp_hotlel_admin_menu');
  function wp_hotlel_admin_menu() {

  add_menu_page('Page Title', 'Menu Title', 10,'unique-slug','ChainForm_page');  

  function ChainForm_page() {
  echo "test";
  } 

The menu is being displayed and working at admin dashboard. But not being displayed at other users dashboard. I am being logged in through Wordpress basic users login section.

I have added the line below,

global $wp_roles;

   $wp_roles->add_cap('Subscriber','wp-wall');

Subscriber is my user type. The menu item is not being displayed still at general users custom menu.

Please help me to fix this.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

唱一曲作罢 2024-12-19 14:15:32

我相信自 2.8 版本以来 add_cap 已被弃用。您可以使用类似的内容:

<?php
if( current_user_can( 'edit-posts' ) ){
  //YOUR CODE HERE
}
?>

请参阅角色和功能的 Codex 页面:

http://codex.wordpress.org/Roles_and_Capability< /a>

以及简化版本:

http://web-profile.com.ua/wordpress/dev/user-capability/

The add_cap has been deprecated since version 2.8 I believe. You could use something like:

<?php
if( current_user_can( 'edit-posts' ) ){
  //YOUR CODE HERE
}
?>

See the Codex Pages for Roles and Capabilities:

http://codex.wordpress.org/Roles_and_Capabilities

And a simplified version:

http://web-profile.com.ua/wordpress/dev/user-capabilities/

雨轻弹 2024-12-19 14:15:32

您的值 10(第三个参数)应替换为功能(例如“edit_pages”)。用户级别已被弃用。 以下是所有可用功能及其关联角色的列表

Your value 10 (the third argument) should be replaced with a capability (e.g. 'edit_pages'). User levels are deprecated. Here is a list of all available capabilities and their associated roles.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文