Last active
August 29, 2015 14:26
-
-
Save Willem-Siebe/63e0c5b66a256a973756 to your computer and use it in GitHub Desktop.
Check WP User role
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// function current user roles http://docs.appthemes.com/tutorials/wordpress-check-user-role-function/ | |
/** | |
* Checks if a particular user has a role. | |
* Returns true if a match was found. | |
* | |
* @param string $role Role name. | |
* @param int $user_id (Optional) The ID of a user. Defaults to the current user. | |
* @return bool | |
*/ | |
function appthemes_check_user_role( $role, $user_id = null ) { | |
if ( is_numeric( $user_id ) ) | |
$user = get_userdata( $user_id ); | |
else | |
$user = wp_get_current_user(); | |
if ( empty( $user ) ) | |
return false; | |
return in_array( $role, (array) $user->roles ); | |
} | |
// example use for the current user | |
if ( appthemes_check_user_role( 'customer' ) | |
_e( "You've got access dude!", 'appthemes' ); | |
else | |
_e( "Sorry man, no luck.", 'appthemes' ); | |
// example use for a specific user | |
$user_id = 23; | |
if ( appthemes_check_user_role( 'customer', $user_id ) | |
_e( "You've got access dude!", 'appthemes' ); | |
else | |
_e( "Sorry man, no luck.", 'appthemes' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment