Skip to content

Instantly share code, notes, and snippets.

@jamiemitchell
Last active December 11, 2015 16:38
Show Gist options
  • Save jamiemitchell/4628867 to your computer and use it in GitHub Desktop.
Save jamiemitchell/4628867 to your computer and use it in GitHub Desktop.
Add next/prev to single post in Genesis Framework.
<?php
/* Add Previous & Next Links in Genesis Single Post Page
------------------------------------------------------------ */
add_action('genesis_after_post_content', 'genesis_post_navigation');
function genesis_post_navigation() {
if ( is_single ( ) ) { ?>
<div id="prev-next">
<div class="prev-link">&larr; Previous Post
<?php previous_post_link('%link', '%title'); ?>
</div>
<div class="next-link">Next Post &rarr;
<?php next_post_link('%link', '%title'); ?>
</div>
</div>
<?php }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment