Advertisement
dprophit

Loops latest topics

Jun 1st, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. <!-- Begin bbpress forum topics -->
  2. <div class="columns seventeen">
  3.       <div class="site_goto_center">
  4.         <div class="margin_top4">
  5.         </div>
  6.         <div class="site_center_div">
  7.           <div class="columns eight">
  8.             <h3 class="with_line">Latest Forum Topics</h3>
  9. <?php
  10. $show_sep = false;
  11.  
  12. if ( 'forum' ==  bbp_get_forum_last_active_id() ) {
  13. $breadcrumbs = '<a href="' . bbp_get_forum_permalink( $parent->ID ) . '">' . bbp_get_forum_title( $parent->ID ) . '</a>';
  14. }
  15.  
  16. if ( $breadcrumbs ) {
  17. ?>
  18. <ul class="square-bullets">
  19. <?php
  20. printf( __( '<li>Posted in %2$s ' ),'', $breadcrumbs);
  21. $show_sep = true;
  22. echo '</li>';
  23. echo '</ul>';
  24. }
  25. ?>
  26. </div>
  27. <!-- End bbpress forum topics -->
  28.         </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement