In the Standalone I jus use this <?php bb_latest_topics_pages(); ?>
for what you wanted Maybe you can use it by changing bb_
to bbp_
like something else that it worked!
Maybe this will explain it a little better:
<?php _e( 'Pages: ', 'wptumble' ); ?> <?php bbp_forum_pagination_links(); ?>
That basically adds ‘Pages:’ right before the page links. The ‘downside’ is that ‘Pages:’ is output to the browser even if there are no links available.
what I am trying to do is something like:
<?php bbp_forum_pagination_links('before_links' => 'Pages:'); ?>
I’ve got almost the same problem as @Anointed here, no before and after option..
Sorry to say but this is typically WordPress development they output Page navigations in < .a href's.. just one after the other and you can only hope there is enough classes to list and style them properly.
I found this problem with WordPress the first time when i tried to apply Twitter's Bootstrap Page navigation to a WordPress theme.
This is how a page-navigation should look like anno 2012 in default HTML. http://twitter.github.com/bootstrap/components.html#pagination
not like this..
<a href="#">page 1</a>
<a href="#">page 2</a>
<a href="#">page 3</a>
-
This reply was modified 12 years ago by Shmoo.
-
This reply was modified 12 years ago by Shmoo.