Created
November 21, 2011 04:43
-
-
Save billrobbins/1381648 to your computer and use it in GitHub Desktop.
Authentic Paging
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
<div class="paging"> | |
<?php if(function_exists('wp_pagenavi')) : wp_pagenavi(); else: ?> | |
<p class="paging-next left"> | |
<?php next_posts_link(__('« Next', 'organizedthemes')); ?> | |
</p> | |
<p class="paging-prev right"> | |
<?php previous_posts_link(__('Previous »', 'organizedthemes')); ?> | |
</p> | |
<?php endif; ?> | |
<div class="clear"></div> | |
</div><!-- end paging --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment