Wordpress how to get all user meta data by user ID?

后端 未结 6 1503
独厮守ぢ
独厮守ぢ 2020-12-18 08:43

how to get all user meta data by user ID in Wordpress?

6条回答
  •  猫巷女王i
    2020-12-18 09:12

    @Boopathi Rejan nearly had it. Output all of the user meta by using the following code and then look through and find the values you

     $user_info = get_user_meta($current_user->ID);
     var_dump($user_info);
    

    You can change the USERID to anything, currently this is setup to display the ID of the logged in user.

提交回复
热议问题