現在のユーザーが管理者であるかどうかを確認したいのですが、残念ながら 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' );
}