Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. /** Genesis Previous/Next Post Post Navigation */
  3.  
  4. add_action( 'genesis_before_comments', 'eo_prev_next_post_nav' );
  5.  
  6. function eo_prev_next_post_nav() {
  7.  
  8. if ( is_single() ) {
  9.  
  10. echo '<div class="prev-next-navigation">';
  11. previous_post_link( '<div class="previous">&#10094; %link</div>', '%title' );
  12. next_post_link( '<div class="next">%link &#10095;</div>', '%title' );
  13. echo '</div><div class="clearfix"></div><!-- .prev-next-navigation -->';
  14.  
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement