Answers for "user id in wordpress"

PHP
1

wordpress get user by id

$user_obj = get_user_by('id', 1);
Posted by: Guest on June-08-2021
0

from user id to user role wordpress

$user_meta = get_userdata( $user_id );

$user_roles = $user_meta->roles; // array with all the roles the user is part of.
Posted by: Guest on October-14-2020

Browse Popular Code Answers by Language