Genesis has a function which is not active (in most themes) that allows post navigation from older to later posts when viewing in single posts view. That function is genesis_prev_next_post_nav and is found in genesis/lib/structure/post.php
So to add the navigation below the post, add a snippet to your themes functions.php, you can use
add_action( 'genesis_entry_footer', 'genesis_prev_next_post_nav' );
So here the navigation will appear at the footer as we used the hook genesis_entry_footer
To add navigation links to custom post types check out the way to so here.
7 comments
Cheryl
Hi, I know this is an old post, but I’d tried everything to get post navigation and nothing worked until I found this post and tried it. Thank you!!!!
Paal Joachim Romdahl
That is a very useful snippet!
Thank you Neil!
Neil Gowran
Glad it helped
Clay
Is it possible to modify it to work on custom post types? It works beautifully on posts but I can’t seem to make it work on custom post types.
Neil Gowran
Check out some info here – https://wpbeaches.com/add-custom-post-type-navigation-links-in-genesis/
Sandee
Great little snippet — I’ve been looking for this one! Thanks, Neil!
Neil Gee
Yes it’s a hidden suprise that one.