gpt4 book ai didi

php - 检查当前用户是否是wordpress中的管理员

转载 作者:IT王子 更新时间:2023-10-28 23:54:21 25 4
gpt4 key购买 nike

我正在为 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' );
}

最佳答案

尝试以下方法:

if ( current_user_can( 'manage_options' ) ) {
/* A user with admin privileges */
} else {
/* A user without admin privileges */
}

阅读有关 current_user_can 函数的更多信息 here .

关于php - 检查当前用户是否是wordpress中的管理员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19802492/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com