Here is a quick snippet to get all user meta data by user_id in WordPress. The following code will print all user meta data for particular user.

$all_meta_for_user = get_user_meta( $user_id );
print_r( $all_meta_for_user );

Have any doubt, then comment here!

2 Comments on Get all user meta data by user id in WordPress

  1. For example I have made an option to add a custom meta data for every registering users having meta key as

Leave a Reply

Your email address will not be published. Required fields are marked *