Advertisement
Guest User

Untitled

a guest
Sep 15th, 2013
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Forums Loop - Single Forum
  5. *
  6. * @package bbPress
  7. * @subpackage Theme
  8. */
  9.  
  10. ?>
  11.  
  12. <ul id="bbp-forum-<?php bbp_forum_id(); ?>" <?php bbp_forum_class(); ?>>
  13.  
  14. <li class="bbp-forum-info">
  15.  
  16. <?php do_action( 'bbp_theme_before_forum_title' ); ?>
  17.  
  18. <a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a>
  19.  
  20. <?php do_action( 'bbp_theme_after_forum_title' ); ?>
  21.  
  22. <?php do_action( 'bbp_theme_before_forum_description' ); ?>
  23.  
  24. <div class="bbp-forum-content"><?php bbp_forum_content(); ?></div>
  25.  
  26. <?php do_action( 'bbp_theme_after_forum_description' ); ?>
  27.  
  28. <?php do_action( 'bbp_theme_before_forum_sub_forums' ); ?>
  29.  
  30. <?php bbp_list_forums(array ('separator' => '<br />')); ?>
  31.  
  32. <?php do_action( 'bbp_theme_after_forum_sub_forums' ); ?>
  33.  
  34. <?php bbp_forum_row_actions(); ?>
  35.  
  36. </li>
  37.  
  38. <li class="bbp-forum-topic-count"><?php bbp_forum_topic_count(); ?></li>
  39.  
  40. <li class="bbp-forum-reply-count"><?php bbp_show_lead_topic() ? bbp_forum_reply_count() : bbp_forum_post_count(); ?></li>
  41.  
  42. <li class="bbp-forum-freshness">
  43.  
  44. <?php do_action( 'bbp_theme_before_forum_freshness_link' ); ?>
  45.  
  46. <?php bbp_forum_freshness_link(); ?>
  47.  
  48. <?php do_action( 'bbp_theme_after_forum_freshness_link' ); ?>
  49.  
  50. <p class="bbp-topic-meta">
  51.  
  52. <?php do_action( 'bbp_theme_before_topic_author' ); ?>
  53.  
  54. <span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span>
  55.  
  56. <?php do_action( 'bbp_theme_after_topic_author' ); ?>
  57.  
  58. </p>
  59. </li>
  60.  
  61. </ul><!-- #bbp-forum-<?php bbp_forum_id(); ?> -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement