rdusnr

Untitled

Jul 7th, 2016
5,319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. function sq7_extra_fields_members_directory() {
  2.  
  3.     $location = bp_get_member_profile_data('field=Location');
  4.     $specialization = bp_get_member_profile_data('field=Specialization');
  5.  
  6.     if ($specialization || $location) {
  7.         echo '<div class="mdetcenter">'. 'Location : ' . $location . '</div>';
  8.         echo '<div class="mdetcenter">'. 'Specialization : ' . $specialization . '</div>';
  9.     }
  10.  
  11. }
  12. add_action('bp_directory_members_item', 'sq7_extra_fields_members_directory');
Advertisement
Add Comment
Please, Sign In to add comment