Thanks Chouf1. Simpler, without a plugin?
What do you mean by that?
I’m using BuddyPress of course. But I just don’t want to add a plugin for a simple action like that.
I just want to add the last ten titles from the buddypress/bbpress side in the footer.
I’m still trying to make this happen without a plugin: Now I am pretty certain this can be accomplished by using this
if ( bp_has_activities( 'type=sitewide&max=6&action=new_forum_topic' ) )
I still haven’t figured out though how only to filter out the title (plus link).
<?php if ( bp_has_activities( 'type=sitewide&max=10&action=new_forum_topic' ) ) : ?>
<ul class="activity-list">
<?php while ( bp_activities() ) : bp_the_activity(); ?>
<li class="<?php bp_activity_css_class() ?>">
<?php bp_activity_content() ?>
</li>
<?php endwhile; ?>
</ul>
<?php endif;?>
Maybe by modifying bp_activity_content?
Thanks people!