Skip to content

Instantly share code, notes, and snippets.

@jaredatch
Created February 4, 2014 17:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaredatch/8808432 to your computer and use it in GitHub Desktop.
Save jaredatch/8808432 to your computer and use it in GitHub Desktop.
Display next/prev post links
<?php
/**
* Display Next/Prev link on single posts
*
* @since 1.0.0
*/
function ja_prev_next_post_nav() {
if ( is_singular( 'post' ) ) {
echo '<div class="prev-next-navigation">';
previous_post_link( '<div class="previous">Previous article: %link</div>', '%title' );
next_post_link( '<div class="next">Next Post: %link</div>', '%title' );
echo '</div>';
}
}
add_action( 'genesis_before_comments', 'ja_prev_next_post_nav' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment