Como verificar se um usuário está em uma função específica?
6 respostas
- votos
-
- 2010-12-08
Se vocêprecisar apenas dissopara o usuário atual
current_user_can()
Aceita ambas asfunçõese capacidades.update :passando umnome defunçãopara
current_user_can()
não émaisgarantidoparafuncionar corretamente (consulte # 22624 ).Em vez disso,vocêpode querer verificar afunção do usuário:$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 }
-
Eu sei queestepost é respondido hámuitotempo,mas se alguém acontecerpara chegar aqui ... Veja a documentaçãomais uma vezpara Current_user_can () -> "Nãopasse umnome depapelpara Current_user_can (),poisissonão égarantidoparaTrabalhe corretamente (veja # 22624). Em vez disso,vocêpode querertentar afunção defunção de usuário de verificação conjuntapor 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
-
^ Há um suporte ausentena declaração IF^ There is a bracket missing in the if statement
- 1
- 2015-06-04
- Aajahid
-
@Aajahideditado :)@Aajahid edited :)
- 1
- 2015-06-04
- Rarst
-
Senãoestiver usandomultisite,eu aindaprefiro a simplicidade de `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
Euestavaprocurando umamaneira de obter afunção de um usuário usando o ID do usuário.Aquiestá o queeuinventei:
function get_user_roles_by_user_id( $user_id ) { $user = get_userdata( $user_id ); return empty( $user ) ? array() : $user->roles; }
Então,um
is_user_in_role()
funçãopode serimplementado como assim: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 ) ); }
-
Funcionabem paramim para obter aprimeirafunção atribuída a um usuário.works fine for me to get the first role assigned to a user.
- 1
- 2012-10-10
- Q Studio
-
E quanto atodos ospapéis atribuídos ao usuário?What about all the roles assigned to the user?
- 0
- 2017-04-10
- Sahu V Kumar
-
@Vishal Kumar Issoirá verificar contratodos ospapéis atribuídos ao usuário.@Vishal Kumar this will check against all roles assigned to the user.
- 1
- 2017-04-10
- Stephen M. Harris
-
Estafunçãonãoexiste,nãotem certeza seera apenas velho ou o que,mas você deve usar a resposta acima ou a queeupostei abaixoThis 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
Vocêtambémpode criar apenas umnovo objeto de usuário:
$user = new WP_User( $user_id ); if ( ! empty( $user->roles ) && is_array( $user->roles ) && in_array( 'Some_role', $user->roles ) ) { return true; }
Nãotenho certeza de qual versão
get_user_roles_by_user_id
foi removida,masnão émais umafunção disponível.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.-
Isso é útil quandotenho que chamar outrosmétodos da 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
Aquiestá umafunção que aceita um usuárioe umpapelparamaiorflexibilidade:
funçãomy_has_role ($ user,$função) { $funções=$ user->funções; Retornarin_array ($função,(matriz) $ user->funções); } if (my_has_role (USUÁRIO $,'some_role')) { //Fazer coisas }
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
Calling Funsno objeto do usuário
$user->roles
não retornamtodas asfunções.Amaneira correta deencontrar se o usuáriotiver umafunção ou capacidadeestá seguindo.(Issofuncionano WP versão 2.0.0e maior.) A seguintefunçãofunciona com o ID do usuário Vocêpode obter o ID do usuário atualpor$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; } }
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
Este é opost velho,mas aquiestá umafunção universal quefuncionanas versões detodas as 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;
Comestafunção,vocêpodepesquisar o usuário logadoporfunção oupor ID do usuário/e-mail.Também aceite recursos defunções de usuário.
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.
Eutenho um requisitobastanteespecíficoparamostrar umtexto diferenteem umaetiqueta de camponapágina Perfil do usuário combasenafunção do usuário atual.Eunão consigo descobrir como verificar se o uso atual é um "autor".
Euestouprocurando umafunção como:
Euimagino queisso ébem simples,masprocureipormuitotempo sem uma resposta,entãoeupensei queiriapostar aqui.