Created
August 7, 2016 20:51
-
-
Save celticwebdesign/7c98a6972a7e7c7ed13a125b60a92015 to your computer and use it in GitHub Desktop.
WordPress Single Post - Previous Next Articles
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
<!-- prev post next --> | |
<div class="prev_next clear"> | |
<div class="left prev"> | |
<?php | |
previous_post_link('« %link','Previous post'); | |
?> | |
</div> | |
<div class="right next"> | |
<?php | |
next_post_link('%link »','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