Add this to your functions.php file to add Prev/Next arrows after your single post. Simply use a different Genesis Hook to add them somewhere else.
/** Genesis Previous/Next Post Post Navigation */ add_action( 'genesis_after_comments', 'eo_prev_next_post_nav' ); function eo_prev_next_post_nav() { if ( is_single() ) { echo ''; } }
You’ll need a little CSS as well:
.prev-next-navigation { clear:both; font-size: 110%; margin-bottom: 45px; width: 60%; } .previous { width: 50%; float:left; } .next { width: 49%; float:right; text-align: right; }
Here’s the end result:
Saket Yeotikar says
I have tried it. Glad it is working yet in next is coming on next line. How should I adjust it?
Laura Hartwig says
I would need to see where you are using it to be sure, but it’s probably a CSS problem. Send me a link to where this is happening.