Created
February 7, 2014 19:55
-
-
Save fovoc/8870513 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( $pagination == 'pager' ) : | |
if ($wp_query->max_num_pages > 1) : | |
$current_page = max(1, get_query_var('paged')); | |
?> | |
<nav class="post-nav"> | |
<ul class="pager"> | |
<li class="previous"><?php next_posts_link(__('← Older posts', 'roots')); ?></li> | |
<li class="text-center"><?php echo $current_page.' of '.$wp_query->max_num_pages; ?></li> | |
<li class="next"><?php previous_posts_link(__('Newer posts →', 'roots')); ?></li> | |
</ul> | |
</nav> | |
<?php | |
endif; | |
else : |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment