Support » Developing with WordPress » Show user role on profile page?

  • Resolved gabrieluno

    (@gabrieluno)


    I need to show the role of the profile author, not the logged in user. Would someone know how to do it?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • <?php
    	$user_id = get_queried_object_id();
    	$user_meta = get_userdata($user_id);
    	$user_roles = $user_meta->roles;
    	echo '<div>'.$user_roles[0].'</div>';
    ?>

    There’s a start

    Thread Starter gabrieluno

    (@gabrieluno)

    Thank you big TUGBUCKET !

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.