Skip to content

Instantly share code, notes, and snippets.

@rupert-ong
Created June 27, 2012 14:28
Show Gist options
  • Save rupert-ong/3004405 to your computer and use it in GitHub Desktop.
Save rupert-ong/3004405 to your computer and use it in GitHub Desktop.
Wordpress: Previous Next Post Link
<?php
previous_post_link('%link', '&laquo; Previous Post');
if (get_adjacent_post(false, '', false) && get_adjacent_post(false, '', true)) {
echo ' | ';
}
next_post_link('%link', 'Next Post &raquo;');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment