Created
September 14, 2019 13:11
-
-
Save topleague/a89ed38392e8896cb07e403acc097478 to your computer and use it in GitHub Desktop.
display Next Post Links above the Footer Widget
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
//* 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