Show paginated list of front page stickies?
-
Is there a way to show a paginated list of front page stickies? In the default bbPress template file “front-page.php”, I found this code:
<?php if ( $super_stickies ) : foreach ( $super_stickies as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> <big>“><?php topic_title(); ?></big></td>
<td class=”num”><?php topic_posts(); ?></td>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”>“><?php topic_time(); ?></td>
</tr>
<?php endforeach; endif; // $super_stickies ?>
It display a list of front page stickies, but it doesn’t have any pagination if you have a lot of stickies. I tried adding this:
<?php forum_pages(); ?>
But it doens’t work.
Any suggestions on getting this to paginate?
- You must be logged in to reply to this topic.