Created
December 4, 2012 18:12
-
-
Save BoweFrankema/4207064 to your computer and use it in GitHub Desktop.
Add Recent Topics on BBpress 2+ Homepage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ! // 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