Я разрабатываю плагин для wordpress, я хочу найти, является ли текущий пользователь администратором или нет, к сожалению, я не мог использовать current_user_can(), поскольку он дает мне ошибку, поэтому я использую глобальный $current_user. Но я не мог попасть внутрь части if даже для пользователя admin. Как это исправить?
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' );
}