| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Pagination for pages of search results |
| 5 |
* |
| 6 |
* @package bbPress |
| 7 |
* @subpackage Theme |
| 8 |
*/ |
| 9 |
|
| 10 |
// Exit if accessed directly |
| 11 |
defined( 'ABSPATH' ) || exit; |
| 12 |
|
| 13 |
do_action( 'bbp_template_before_pagination_loop' ); ?> |
| 14 |
|
| 15 |
<div class="bbp-pagination"> |
| 16 |
<div class="bbp-pagination-count"><?php bbp_search_pagination_count(); ?></div> |
| 17 |
<div class="bbp-pagination-links"><?php bbp_search_pagination_links(); ?></div> |
| 18 |
</div> |
| 19 |
|
| 20 |
<?php do_action( 'bbp_template_after_pagination_loop' ); |
| 21 |
|