I'm trying to integrate my forum throughout my site. Is it possible to display the latest topics based on when they are first posted?
Once a reply has been sent through a topic will jump to the top of the list! I do not want that to happen. Here's my code.
<?php
$exclude = array('1','2','3','4','5','7','8','9','10');
$topics = ssi_recentTopics(10, $exclude, 'array');
foreach($topics as $topic)
echo $topic['link'], </br>';
?>
I do not know what I'm doing wrong. I even tried the ssi_topTopicsViews function.