Advertisement
Guest User

profile_field_value

a guest
Dec 12th, 2010
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php if ( bp_has_profile('profile_group_id=3&user_id=' . bp_loggedin_user_id()) ) : ?>
  2. <?php while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
  3.  
  4. <ul id="profile-groups">
  5. <?php if ( bp_profile_group_has_fields() ) : ?>
  6.  
  7. <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
  8.  
  9.  
  10.  
  11. <?php if ( bp_field_has_data() ) : ?>
  12. <li>
  13.  
  14. <?php bp_the_profile_field_value(); ?>
  15.  
  16. </li>
  17. <?php endif; ?>
  18.  
  19. <?php endwhile; ?>
  20.  
  21.  
  22. <?php endif; ?>
  23. </ul>
  24.  
  25. <?php endwhile; ?>
  26.  
  27. <?php endif;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement