Advertisement
Guest User

profile-loop

a guest
Oct 17th, 2014
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <?php do_action( 'bp_before_profile_loop_content' ); ?>
  2.  
  3. <?php if ( bp_has_profile() ) : ?>
  4.  
  5. <?php while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
  6.  
  7. <?php if ( bp_profile_group_has_fields() ) : ?>
  8.  
  9. <?php do_action( 'bp_before_profile_field_content' ); ?>
  10.  
  11. <div class="bp-widget <?php bp_the_profile_group_slug(); ?>">
  12.  
  13.  
  14. <div class="hr-title hr-full hr-double"><abbr><?php bp_the_profile_group_name(); ?></abbr></div>
  15. <div class="gap-10"></div>
  16. <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
  17.  
  18. <?php if ( bp_field_has_data() ) : ?>
  19.  
  20.  
  21.  
  22. <dl<?php bp_field_css_class('dl-horizontal'); ?>>
  23. <dt><?php bp_the_profile_field_name(); ?></dt>
  24. <dd><?php bp_the_profile_field_value(); ?></dd>
  25. </dl>
  26.  
  27.  
  28. <?php endif; ?>
  29.  
  30. <?php do_action( 'bp_profile_field_item' ); ?>
  31.  
  32. <?php endwhile; ?>
  33.  
  34.  
  35.  
  36.  
  37. </div><!-- end bp-widget -->
  38.  
  39. <?php do_action( 'bp_after_profile_field_content' ); ?>
  40.  
  41. <?php endif; ?>
  42.  
  43. <?php endwhile; ?>
  44.  
  45. <?php do_action( 'bp_profile_field_buttons' ); ?>
  46.  
  47. <?php endif; ?>
  48.  
  49. <?php do_action( 'bp_after_profile_loop_content' ); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement