Created
November 19, 2016 08:19
-
-
Save sudipbd/a225120e6b36a4b2441141e2dca3a1b6 to your computer and use it in GitHub Desktop.
WordPress normal pagination
This file contains hidden or 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
//on index.php right after endwhile | |
<div class="nav-previous alignleft"><?php next_posts_link( 'Older posts' ); ?></div> | |
<div class="nav-next alignright"><?php previous_posts_link( 'Newer posts' ); ?></div> | |
<?php else : ?> | |
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment