Come verificare se un utente ricopre un ruolo specifico?
6 risposta
- voti
-
- 2010-12-08
Seti serve soloper l'utente corrente,
current_user_can()
accetta ruolie capacità.AGGIORNAMENTO :non èpiùgarantito cheilpassaggio delnome di un ruolo a
current_user_can()
funzioni correttamente (vedere # 22624 ).Invece,potresti voler controllareil ruolo utente:$user = wp_get_current_user(); if ( in_array( 'author', (array) $user->roles ) ) { //The user has the "author" role }
If you only need this for current user
current_user_can()
accepts both roles and capabilities.UPDATE: Passing a role name to
current_user_can()
is no longer guaranteed to work correctly (see #22624). Instead, you may wish to check user role:$user = wp_get_current_user(); if ( in_array( 'author', (array) $user->roles ) ) { //The user has the "author" role }
-
So che a questopost viene data rispostamoltotempofa,ma se qualcuno arriva qui ...guarda ancora una volta la documentazioneper current_user_can () -> "Nonpassare unnome di ruolo a current_user_can (),poichénon ègarantitofunzionano correttamente (vedere # 22624). Invece,potrestiprovare lafunzione di controllo del ruolo utente creata da AppThemes.(http://codex.wordpress.org/Function_Reference/current_user_can)I know this post is answered a long time ago but if someone happens to get here... look at the documentation once more for current_user_can() -> "Do not pass a role name to current_user_can(), as this is not guaranteed to work correctly (see #22624). Instead, you may wish to try the check user role function put together by AppThemes." (http://codex.wordpress.org/Function_Reference/current_user_can)
- 10
- 2014-01-28
- bestprogrammerintheworld
-
^ Manca unaparentesinell'istruzioneif^ There is a bracket missing in the if statement
- 1
- 2015-06-04
- Aajahid
-
@Aajahidmodificato :)@Aajahid edited :)
- 1
- 2015-06-04
- Rarst
-
Senon usoilmultisito,preferisco comunque la semplicità di `current_user_can ('editor')`If not using multisite, I still prefer the simplicity of `current_user_can('editor')`
- 1
- 2020-01-25
- Jules
-
- 2012-06-11
Stavo cercando unmodoper ottenereil ruolo di un utente utilizzando l'ID dell'utente.Ecco cosami è venutoin mente:
function get_user_roles_by_user_id( $user_id ) { $user = get_userdata( $user_id ); return empty( $user ) ? array() : $user->roles; }
Quindi,unafunzione
is_user_in_role()
potrebbeessereimplementatain questomodo:function is_user_in_role( $user_id, $role ) { return in_array( $role, get_user_roles_by_user_id( $user_id ) ); }
I was looking for a way to get a user's role using the user's id. Here is what I came up with:
function get_user_roles_by_user_id( $user_id ) { $user = get_userdata( $user_id ); return empty( $user ) ? array() : $user->roles; }
Then, an
is_user_in_role()
function could be implemented like so:function is_user_in_role( $user_id, $role ) { return in_array( $role, get_user_roles_by_user_id( $user_id ) ); }
-
funzionabene perme per ottenereilprimo ruolo assegnato a un utente.works fine for me to get the first role assigned to a user.
- 1
- 2012-10-10
- Q Studio
-
Etuttii ruoli assegnati all'utente?What about all the roles assigned to the user?
- 0
- 2017-04-10
- Sahu V Kumar
-
@Vishal Kumar verificheràtuttii ruoli assegnati all'utente.@Vishal Kumar this will check against all roles assigned to the user.
- 1
- 2017-04-10
- Stephen M. Harris
-
Questafunzionenonesiste,non sono sicuro sefosse solo vecchia o cosa,ma dovresti usare la risposta sopra o quella che hopostato sottoThis function does not exist, not sure if it was just old or what, but you should use the answer above or the one I posted below
- 0
- 2017-11-16
- sMyles
-
- 2017-11-16
Puoi anche creare unnuovo oggetto utente:
$user = new WP_User( $user_id ); if ( ! empty( $user->roles ) && is_array( $user->roles ) && in_array( 'Some_role', $user->roles ) ) { return true; }
Non sono sicuroin quale versione
get_user_roles_by_user_id
sia stata rimossa,manon èpiù unafunzione disponibile.You can also just create a new user object:
$user = new WP_User( $user_id ); if ( ! empty( $user->roles ) && is_array( $user->roles ) && in_array( 'Some_role', $user->roles ) ) { return true; }
Not sure what version
get_user_roles_by_user_id
was removed in, but it's no longer an available function.-
Questo è utile quando devo chiamare altrimetodi della classe WP_User.This is handy when I have to call other methods of the WP_User class.
- 0
- 2019-09-25
- Justin Waulters
-
- 2017-11-28
Ecco unafunzione che accetta un utentee un ruoloper unamaggioreflessibilità:
functionmy_has_role ($ user,$ role) { $ ruoli=$ utente-> ruoli; returnin_array ($ role,(array) $ user-> roles); } if (my_has_role ($ user,'some_role')) { //fare cose }
Here is a function that accepts a user and role for greater flexibility:
function my_has_role($user, $role) { $roles = $user->roles; return in_array($role, (array) $user->roles); } if(my_has_role($user, 'some_role')) { //do stuff }
-
- 2019-10-02
La chiamata dei ruoli sull'oggetto utente
$ user- > roles
non restituiscetuttii ruoli.Ilmodo correttoper scoprire se l'utente ha un ruolo o una capacità è seguire.(Funzionanella versione wp 2.0.0e successive.) La seguentefunzionefunziona con l'ID utentepuoi ottenere l'ID utente corrente da$ current_user_id=get_current_user_id ();
/** * Restituisce vero se un user_id ha un determinato ruolo o capacità * * @paramint $ user_id * @param string $ role_or_cap Ruolo o capacità * * @returnboolean */ functionmy_has_role ($ user_id,$ role_or_cap) { $ u=nuovo \ WP_User ($ user_id); //$ u- > roles Modo sbagliato difarlo comenella risposta accettata. $ roles_and_caps=$ u- >get_role_caps ();//Modo correttoperfarlopoiché wpeseguepiù controlliper recuperaretuttii ruoli if (isset ($ roles_and_caps [$ role_or_cap])e $ roles_and_caps [$ role_or_cap]===true) { restituire vero; } } Calling roles on User Object
$user->roles
do not return all the roles. The correct way to find if the user has a role or capability is following. (This works in wp version 2.0.0 and greater.) The following function works with user id you can get the current user id by$current_user_id = get_current_user_id();
/** * Returns true if a user_id has a given role or capability * * @param int $user_id * @param string $role_or_cap Role or Capability * * @return boolean */ function my_has_role($user_id, $role_or_cap) { $u = new \WP_User( $user_id ); //$u->roles Wrong way to do it as in the accepted answer. $roles_and_caps = $u->get_role_caps(); //Correct way to do it as wp do multiple checks to fetch all roles if( isset ( $roles_and_caps[$role_or_cap] ) and $roles_and_caps[$role_or_cap] === true ) { return true; } }
-
- 2020-07-27
Questo è un vecchiopost,maecco unafunzione universale chefunziona sututte le versioni di WordPress.
if(!function_exists('is_user')): function is_user ($role=NULL, $user_id=NULL) { if(empty($user_id)){ $user = wp_get_current_user(); } else { if(is_numeric($user_id) && $user_id == (int)$user_id) { $user = get_user_by('id', (int)$user_id); } else if(is_string($user_id) && $email = sanitize_email($user_id)) { $user = get_user_by('email', $email); } else { return false; } } if(!$user) return false; return in_array( $role, (array)$user->roles, true ) !== false; } endif;
Con questafunzione èpossibile cercaregli utenti registratiper ruolo oper ID utente/e-mail.Accetta anche l'array dei ruoli utente.
This is old post but here is one universal function what working on the all WordPress versions.
if(!function_exists('is_user')): function is_user ($role=NULL, $user_id=NULL) { if(empty($user_id)){ $user = wp_get_current_user(); } else { if(is_numeric($user_id) && $user_id == (int)$user_id) { $user = get_user_by('id', (int)$user_id); } else if(is_string($user_id) && $email = sanitize_email($user_id)) { $user = get_user_by('email', $email); } else { return false; } } if(!$user) return false; return in_array( $role, (array)$user->roles, true ) !== false; } endif;
With this function you can search logged in user by role or by user ID/email. Also accept user roles array.
Ho un requisitopiuttosto specificopermostrare untesto diversoin un'etichetta di campo sullapagina delprofilo utentein base al ruolo dell'utente corrente.Non riesco a capire come verificare se l'uso corrente è un "autore".
Sto cercando unafunzione come:
Immagino che siapiuttosto semplice,ma ho cercatotroppo a lungo senza una risposta,quindi hopensato dipubblicarlo qui.