How to get individual form field's value?This topic has 1 reply, 2 voices, and was last updated 11 years, 10 months ago by Pie Register.Viewing 2 posts - 1 through 2 (of 2 total)AuthorPosts October 11, 2014 at 11:39 am #10002600 MEHEDI HMParticipantHow to get individual field’s value and display the value on front-end? For ex: how do I get Profile picture on front end? October 13, 2014 at 3:22 pm #10002606 Pie RegisterParticipantHello,Here’s how you can do this: assuming your profile field id is “pie_profile_pic_6” global $current_user; $current_user = wp_get_current_user(); $profile_pic = get_user_meta($current_user->ID,"pie_profile_pic_6",true); echo '<img src="'.$profile_pic.'" />'; Hope it helps!thanksAuthorPostsViewing 2 posts - 1 through 2 (of 2 total)The forum ‘Pie-Register 2.0 Support’ is closed to new topics and replies.