检查当前用户是否是wordpress中的管理员
2022-08-30 14:04:45
我正在为wordpress开发一个插件,我想找到当前用户是否是管理员,不幸的是,我无法使用current_user_can(),因为它给了我错误,所以我使用全局$current_user。但是,即使对于管理员用户,我也无法进入if部分。如何解决这个问题?
global $current_user;
if ($current_user->role[0]=='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' );
}