Created
November 7, 2012 18:22
-
-
Save wutupake/4033385 to your computer and use it in GitHub Desktop.
WP: Next/Previous Post URL only
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
<?php if (get_adjacent_post(false, '', false)): // if there are newer posts ?> | |
<a href="<?php echo get_permalink(get_adjacent_post(false,'',false)); ?>" class="article-nav prev"> </a> | |
<?php endif; ?> | |
<?php if (get_adjacent_post(false, '', true)): // if there are older posts ?> | |
<a href="<?php echo get_permalink(get_adjacent_post(false,'',true)); ?>" class="article-nav next"> </a> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment