Skip to content

Instantly share code, notes, and snippets.

@MrJSdev
Created April 11, 2018 06:13
Show Gist options
  • Save MrJSdev/6965e89c5cb9d92351710e41bc149de7 to your computer and use it in GitHub Desktop.
Save MrJSdev/6965e89c5cb9d92351710e41bc149de7 to your computer and use it in GitHub Desktop.
<?php
//Do not copy the above php tag.
function ec_custom_post_navigation()
{
?>
<div class="prev_next">
<div class="nav_left">
<span class="prev">Previous Post</span> <?php previous_post_link('%link', '%title'); ?>
</div class="nav_right">
<div>
<span class="next">Next Post</span> <?php next_post_link('%link', '%title'); ?>
</div>
</div>
<?php
}
add_action('genesis_after_entry', 'ec_custom_post_navigation', 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment