Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <td class="label"><?php bp_the_profile_field_name(); ?></td>
  2.  
  3. <td class="data"><details><?php bp_the_profile_field_value(); ?></details></td>
  4.  
  5. <td class="label"><?php bp_the_profile_field_name(); ?></td>
  6.  
  7. <td class="data"><?php bp_the_profile_field_value(); ?></td>
  8.  
  9. <div class="bp-widget <?php bp_the_profile_group_slug(); ?>">
  10.  
  11. <h2><?php bp_the_profile_group_name(); ?></h2>
  12.  
  13. <table class="profile-fields">
  14.  
  15. <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
  16.  
  17. <?php if ( bp_field_has_data() ) : ?>
  18.  
  19. <tr<?php bp_field_css_class(); ?>>
  20.  
  21. <td class="label"><?php bp_the_profile_field_name(); ?></td>
  22.  
  23. <td class="data"><?php bp_the_profile_field_value(); ?></td>
  24.  
  25. </tr>
  26.  
  27. <?php endif; ?>
  28.  
  29. <?php
  30.  
  31. do_action( 'bp_profile_field_item' ); ?>
  32.  
  33. <?php endwhile; ?>
  34.  
  35. </table>
  36. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement