Front-page, Latest Discussions (Show/Hide posts from forums)
-
One thing I have an issue with is the first page; I want to make an own “Latest Discussions” loop with all forums EXCEPT one forum. And then an own “latest discussions” With only the entries on that one forum (It’s linked in RSS posts) on the same page.
Problem is When i used this inside the loop
//Show latest discussions with all forums except id 17
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<?php if( $topic->forum_id != 17 ) { ?>
codeblock
<?php } endif;?>
<?php endforeach; endif; // $topics ?>
//Show latest discussions but only forum 17
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<?php if( $topic->forum_id == 17 ) { ?>
codeblock
<?php } endif;?>
<?php endforeach; endif; // $topics ?>
The pagination gets an error (Shows me fewer posts than the actual limit), and I cant use the same loop (With different conditions) twice.. Then I get a blank page. :S
So how should I do? Have any Idea? Im not so used to the bbpress loop yet..
- You must be logged in to reply to this topic.