How to display xprofile field as a shortcode
-
I want to use a short code to display the About me section of my users on their profile. I have tried this code but it doesn’t work.
function aboutme_function() {
$user_id = 0;
return xprofile_get_field_data(‘field=About’, $user_id);}
add_shortcode(‘About’, ‘aboutme_function’);
- You must be logged in to reply to this topic.