Advertisement
firoze

next || previous for single.php

Mar 2nd, 2015
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1.  
  2. // This is for single.php have to use before comment and this also work like pagination next|| previous
  3.  
  4.  
  5. <div id="nav-below-single" class="clearfix">
  6. <div class="nav-previous-single"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'brightpage' ) . '</span> %title' ); ?></div>
  7. <div class="nav-next-single"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'brightpage' ) . '</span>' ); ?></div>
  8. </div><!-- #nav-below -->
  9.  
  10.  
  11.  
  12. <!-- css -->
  13. #nav-below{border-top:1px dashed #000}
  14. .nav-previous-single, .nav-next-single{padding: 10px 0;}
  15. .nav-previous-single a, .nav-next-single a{display: inline-block;padding: 10px;color:red;}
  16. .nav-previous-single{float:left;}
  17. .nav-next-single{float:right;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement