Skip to content

Instantly share code, notes, and snippets.

@topleague
Created September 14, 2019 13:11
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 topleague/a89ed38392e8896cb07e403acc097478 to your computer and use it in GitHub Desktop.
Save topleague/a89ed38392e8896cb07e403acc097478 to your computer and use it in GitHub Desktop.
display Next Post Links above the Footer Widget
//* Next Post Link
function leaguewp_prev_next_post_nav() {
if ( is_singular( 'post' ) ) {
echo '<div class="prev-next-navigation">';
previous_post_link( '<div class="previous"><span>Next Post</span><br> %link</div>', '%title' );
//next_post_link( '<div class="next">Next Post: %link</div>', '%title' );
echo '</div>';
}
}
add_action( 'genesis_before_footer', 'leaguewp_prev_next_post_nav' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment