Genesis Custom previous and next post links after entry
//* Custom previous and next post links after entry
function eia_post_navigation() {
if (!is_singular('post')) {
return;
}
?>
<div class="pagination-single">
<div class="previous-post">
<?php previous_post_link('%link', '%title'); ?>
</div>
<div class="next-post">
<?php next_post_link('%link', '%title'); ?>
</div>
</div>
<?php
}
add_action('genesis_after_entry', 'eia_post_navigation');