bbPress – using bb_top_topics()
-
Hello, I have this code (which comes from another support thread here) on my front-page.php:
<table id=”highest”>
<?php $top_topics = bb_top_topics(); ?>
<?php foreach ( $top_topics as $topic ) : ?> // line 70
<tr<?php topic_class(); ?>>
</td>
<td class=”num”><div class=”rating-holder”><?php bb_rating();?>
<span class=”count”><?php bb_rating_count(); ?>
</span>
</div>
</td></tr>
<?php endforeach; ?>
</table>
And under it the code for latest topics.
It gives me this error:
Warning: Invalid argument supplied for foreach() in /home/home1/novapojistovna_cz/public_html/www/bbpress/bb-templates/kakumei/front-page.php on line 70
Can anybody help, please. Don’t quite understand what is wrong
Thanks
- You must be logged in to reply to this topic.