Skip to content

Instantly share code, notes, and snippets.

@BoweFrankema
Created December 4, 2012 18:12
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BoweFrankema/4207064 to your computer and use it in GitHub Desktop.
Save BoweFrankema/4207064 to your computer and use it in GitHub Desktop.
Add Recent Topics on BBpress 2+ Homepage
// ! // Add Recent Topics to BBPress
function recent_bbpress_topics() { { ?>
<!-- html -->
<h4>Recent Topics</h4>
<?php
if ( bbp_has_topics( array( 'author' => 0, 'show_stickies' => false, 'order' => 'DESC', 'post_parent' => 'any', 'posts_per_page' => 10 ) ) )
bbp_get_template_part( 'bbpress/loop', 'topics' );
?>
<!-- end -->
<?php }}
// Hook into action
add_action('bbp_template_after_forums_loop','recent_bbpress_topics');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment