Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3638

Reply To: Get topics of subscribed to forums?

$
0
0
<?php global $current_user; get_currentuserinfo(); $uid = bbp_get_current_user_id(); ?>
<?php if ( bbp_get_user_forum_subscriptions( $uid ) ) : ?>
<?php $subs = bbp_get_user_forum_subscriptions( $uid ) ; ?>
<?php $subs = explode(',', $subs);
  <?php while ( bbp_forums() ) : bbp_the_forum(); ?>
  <?php $forum_id = $bbp->forum_query->post->ID; ?>
	<?php if (in_array($forum_id, $subs)) { ?>
    <p><?php bbp_forum_title(); ?></p>
	<?php } ?>
  <?php endwhile; ?>
<?php endif; ?>

Viewing all articles
Browse latest Browse all 3638

Trending Articles