Showing topics and posts by a given user
-
Running bbPress with Buddypress.
Whilst viewing a user’s profile, I’d like to simply display topics and posts by a given user. I tried lifting this bit of code, but it returns nothing.
Idears?
<?php bbp_set_query_name( 'bbp_user_profile_topics_created' ); ?>
<div id="bbp-author-topics-started" class="bbp-author-topics-started">
<div class="entry-content">
<?php if ( bbp_get_user_topics_started() ) :
bbp_get_template_part( 'bbpress/pagination', 'topics' );
bbp_get_template_part( 'bbpress/loop', 'topics' );
bbp_get_template_part( 'bbpress/pagination', 'topics' );
else : ?>
<p><?php bbp_is_user_home() ? _e( 'You have not created any topics.', 'bbpress' ) : _e( 'This user has not created any topics.', 'bbpress' ); ?></p>
<?php endif; ?>
</div>
</div><!-- #bbp-author-topics-started -->
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.