Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Front page stickies on forum pages?

This should work:

<?php
if ( !$bb_db_override ) :
$super_stickies = get_sticky_topics();
endif;
?>
<?php if ( $super_stickies ) : foreach ( $super_stickies as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> <big><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></big></td>
<td class="num"><?php topic_posts(); ?></td>
<td class="num"><?php topic_last_poster(); ?></td>
<td class="num"><small><?php topic_time(); ?></small></td>
</tr>
<?php endforeach; endif; // $super_stickies ?>

Skip to toolbar