Display the users roles
-
Hello
How can i display the users roles on page?i used this code, but its not working
<?php function is_user_role( $role, $user_id = null ) { $user = is_numeric( $user_id ) ? get_userdata( $user_id ) : wp_get_current_user(); if( ! $user ) return false; return in_array( $role, (array) $user->roles ); } if( is_user_role( 'investor' ) ) echo "investor"; else echo "partner"; ?>thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Display the users roles’ is closed to new replies.