Skip to content

Instantly share code, notes, and snippets.

@borantula
Created August 10, 2015 13:33
Show Gist options
  • Save borantula/3b725bddd78692bf70fe to your computer and use it in GitHub Desktop.
Save borantula/3b725bddd78692bf70fe to your computer and use it in GitHub Desktop.
WordPress links for previous and next post
<div class="entry__arrows visible-md visible-lg">
<a class="entry__arrow entry__arrow--prev" href="<?=get_permalink(get_adjacent_post(false,'',false));?>"></a>
<a class="entry__arrow entry__arrow--next" href="<?=get_permalink(get_adjacent_post(false,'',true));?>"></a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment