Advertisement
chelle

BBPress User Profile - Add Author Link

Mar 28th, 2013
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * User Profile
  5. *
  6. * @package bbPress
  7. * @subpackage Theme
  8. */
  9.  
  10. ?>
  11.  
  12. <?php do_action( 'bbp_template_before_user_profile' ); ?>
  13.  
  14. <div id="bbp-user-profile" class="bbp-user-profile">
  15. <h2 class="entry-title"><?php _e( 'Profile', 'bbpress' ); ?></h2>
  16. <div class="bbp-user-section">
  17.  
  18. <?php if ( bbp_get_displayed_user_field( 'description' ) ) : ?>
  19.  
  20. <p class="bbp-user-description"><?php bbp_displayed_user_field( 'description' ); ?></p>
  21.  
  22. <?php endif; ?>
  23.  
  24. <p class="bbp-user-forum-role"><?php printf( __( 'Forum Role: %s', 'bbpress' ), bbp_get_user_display_role() ); ?></p>
  25. <p class="bbp-user-topic-count"><?php printf( __( 'Topics Started: %s', 'bbpress' ), bbp_get_user_topic_count_raw() ); ?></p>
  26. <p class="bbp-user-reply-count"><?php printf( __( 'Replies Created: %s', 'bbpress' ), bbp_get_user_reply_count_raw() ); ?></p>
  27.  
  28.  
  29. <p><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>">View Gallery</a></p>
  30.  
  31. </div>
  32. </div><!-- #bbp-author-topics-started -->
  33.  
  34. <?php do_action( 'bbp_template_after_user_profile' ); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement