Skip to content

Instantly share code, notes, and snippets.

@schutzsmith
Created February 12, 2013 00:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schutzsmith/4758938 to your computer and use it in GitHub Desktop.
Save schutzsmith/4758938 to your computer and use it in GitHub Desktop.
Buddypress Get user profile data function
Drop in functions.php
function getProfileData($fieldName){
global $bp;
return xprofile_get_field_data($fieldName,$bp->loggedin_user->id);
}
Example Usage - if you have a profile field called Authors Website
<?php echo getProfileData("Authors Website"); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment