Skip to content

Instantly share code, notes, and snippets.

@eclarrrk
Created June 28, 2017 12:58
Show Gist options
  • Save eclarrrk/bb279f5f6d510c0d18dc74b44880c2b9 to your computer and use it in GitHub Desktop.
Save eclarrrk/bb279f5f6d510c0d18dc74b44880c2b9 to your computer and use it in GitHub Desktop.
<aside class="post-navigation bg-texture--light">
<?php
$next_post = get_next_post();
$prev_post = get_previous_post();
?>
<?php if ($prev_post) { ?>
<a href="<?php echo $prev_post->guid ?>" class="post-navigation__prev">
<div class="post-navigation__label">Previous story</div>
<div class="post-navigation__title">
<?php echo $prev_post->post_title ?>
</div>
</a>
<?php } else {}; ?>
<?php if ($next_post) { ?>
<a href="<?php echo $next_post->guid ?>" class="post-navigation__next">
<div class="post-navigation__label">Next story</div>
<div class="post-navigation__title">
<?php echo $next_post->post_title ?>
</div>
</a>
<?php } else {}; ?>
</aside>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment