web/wp-content/plugins/bbpress/templates/default/bbpress/pagination-replies.php
changeset 196 5e8dcbe22c24
equal deleted inserted replaced
195:c7c0fbc09788 196:5e8dcbe22c24
       
     1 <?php
       
     2 
       
     3 /**
       
     4  * Pagination for pages of replies (when viewing a topic)
       
     5  *
       
     6  * @package bbPress
       
     7  * @subpackage Theme
       
     8  */
       
     9 
       
    10 ?>
       
    11 
       
    12 <?php do_action( 'bbp_template_before_pagination_loop' ); ?>
       
    13 
       
    14 <div class="bbp-pagination">
       
    15 	<div class="bbp-pagination-count">
       
    16 
       
    17 		<?php bbp_topic_pagination_count(); ?>
       
    18 
       
    19 	</div>
       
    20 
       
    21 	<div class="bbp-pagination-links">
       
    22 
       
    23 		<?php bbp_topic_pagination_links(); ?>
       
    24 
       
    25 	</div>
       
    26 </div>
       
    27 
       
    28 <?php do_action( 'bbp_template_after_pagination_loop' ); ?>