Re: How Can I Show the Last 10 Forum Posts on Home.php?
You can use the activity stream to pull this information and then filter it.
<?php if ( bp_has_activities(
'per_page=10&
max=10&
object=groups&
action=new_forum_topic,new_forum_post'
) ) : ?>
<ul id="activity-list" class="forum-posts">
<?php while ( bp_activities() ) : bp_the_activity(); ?>
<li class="<?php bp_activity_css_class() ?>">
<?php bp_activity_content() ?>
</li>
<?php endwhile; ?>
</ul>
<?php else: ?>
<div id="message" class="info">
<p>No latest forum posts.</p>
</div>
<?php endif;?>
This will list the last 10 forum topics or forum posts site wide.