@Butlerblog cevabı belirtildiği gibi, bir role karşı kontrol etmek için current_user_can kullanmamalısınız
Bu uyarı özellikle PHP has_cap
tarafından çağrılan fonksiyonun belgelerine eklenmiştir.current_user_can
Yetenek yerine bir rolü kontrol etmek kısmen desteklenirken, güvenilmez sonuçlar üretebileceği için bu uygulama önerilmemektedir.
Bunu yapmanın DOĞRU yolu, kullanıcıyı alıp kontrol etmektir $user->roles
, şöyle:
if( ! function_exists( 'current_user_has_role' ) ){
function current_user_has_role( $role ) {
$user = get_userdata( get_current_user_id() );
if( ! $user || ! $user->roles ){
return false;
}
if( is_array( $role ) ){
return array_intersect( $role, (array) $user->roles ) ? true : false;
}
return in_array( $role, (array) $user->roles );
}
}
İşte bunu yapmak için kullandığım bazı yardımcı fonksiyonlar (bazen sadece şu anki kullanıcıları istemiyorum):
if( ! function_exists( 'current_user_has_role' ) ){
function current_user_has_role( $role ){
return user_has_role_by_user_id( get_current_user_id(), $role );
}
}
if( ! function_exists( 'get_user_roles_by_user_id' ) ){
function get_user_roles_by_user_id( $user_id ) {
$user = get_userdata( $user_id );
return empty( $user ) ? array() : $user->roles;
}
}
if( ! function_exists( 'user_has_role_by_user_id' ) ){
function user_has_role_by_user_id( $user_id, $role ) {
$user_roles = get_user_roles_by_user_id( $user_id );
if( is_array( $role ) ){
return array_intersect( $role, $user_roles ) ? true : false;
}
return in_array( $role, $user_roles );
}
}
O zaman bunu sadece yapabilirsiniz:
current_user_has_role( 'editor' );
veya
current_user_has_role( array( 'editor', 'administrator' ) );
if( current_user_can('editor') || current_user_can('administrator') )