2

我的插件代码如下所示,

if (!current_user_can('administrator')){
function hide_post_page_options() {
//global $post;
// Set the display css property to none for add category and add tag functions
$hide_post_options = "<style type=\"text/css\"> .jaxtag { display: none; } #category-adder { display: none; } </style>";
print($hide_post_options);
}
add_action( 'admin_head', 'hide_post_page_options'  );
}

但是当我激活我得到一个错误

Fatal error: Call to undefined function wp_get_current_user()

我可以通过在capabilities.php 中包含pluggable.php 来解决这个问题。但我不认为对这些文件进行更改是更好的方法。因为 wp_get_current_user() 是一个可插入的函数,所以它只有在插件加载后才可用。有没有办法在不更改核心文件的情况下使用它?

4

1 回答 1

2

如果不是管理员,我建议您将其从菜单中删除,而不是用 CSS 隐藏它,这将是一种 WordPress 方法

add_action('admin_menu', 'dot1_remove_dahsboard_menu', 111);

function dot1_remove_dahsboard_menu(){
   global $submenu, $menu;

   //to check array key you want to unset in your case, print the array
   echo "<pre>";
   print_r($menu);
   echo "</pre>";

   echo "<pre>";
   print_r($submenu);
   echo "</pre>";
   /* Unset menu array */
   if(  !current_user_can('manage_options')  ){
        unset($menu['10']);
   }

   /* Unset submenu array */
  if(  !current_user_can('manage_options')  ){
        unset($submenu['edit.php']['10']);
  }
}
于 2013-11-06T08:10:15.537 回答