Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How do I loop through EACH forum?

I didn’t find how to loop each category if there is such as thing, but I found this solution, its WORKS fine…

<?php if ( $topics ) : foreach ( $topics as $topic) : ?>
<?php
$doof = $topic->forum_id;
if ($doof=="1") {
?>
<p><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a><?php topic_page_links(); ?></p>
<?php } ?>
<?php endforeach; endif; ?>

Skip to toolbar