Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save celticwebdesign/7c98a6972a7e7c7ed13a125b60a92015 to your computer and use it in GitHub Desktop.
Save celticwebdesign/7c98a6972a7e7c7ed13a125b60a92015 to your computer and use it in GitHub Desktop.
WordPress Single Post - Previous Next Articles
<!-- prev post next -->
<div class="prev_next clear">
<div class="left prev">
<?php
previous_post_link('&laquo; %link','Previous post');
?>
</div>
<div class="right next">
<?php
next_post_link('%link &raquo;','Next post');
?>
</div>
</div>
<!-- prev post next -->
.single .prev_next{margin:20px auto 40px;padding:10px 0;}
.single .prev_next .left{float: left;}
.single .prev_next .next{float: right;text-align:right;}
@media only screen and (min-width:768px) {
.single .prev_next{margin:20px 10% 40px;}
}
/* min-width:768px */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment