Advertisement
Guest User

Untitled

a guest
Dec 12th, 2012
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <?php
  2. $parent_forum = !empty( $instance['parent_forum'] ) ? $instance['parent_forum'] : '0';
  3. $list_forums = new WP_Query( array(
  4. 'post_parent' => $parent_forum,
  5. 'post_type' => bbp_get_forum_post_type(),
  6. 'posts_per_page' => get_option( '_bbp_forums_per_page', 50 ),
  7. 'orderby' => 'menu_order',
  8. 'order' => 'ASC'
  9. ) );
  10. ?>
  11.  
  12. <ul id="list-forums">
  13. <?php while ( $list_forums->have_posts() ) : $list_forums->the_post(); ?>
  14. <li>
  15. <a href="<?php bbp_forum_permalink( $list_forums->post->ID ); ?>" title="<?php bbp_forum_title( $list_forums->post->ID ); ?>">
  16. <?php bbp_forum_title( $list_forums->post->ID ); ?>
  17. <span>( <?php bbp_forum_topic_count( $list_forums->post->ID ); ?> )</span>
  18. </a>
  19. </li>
  20. <?php endwhile; ?>
  21. </ul><!--/list-forums-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement