I tried WP-Paginate and Simple Pagination with this function (using proper code for each plugin of course) in functions.php:
function navpost () {
if(function_exists('wp_simple_pagination')) {
wp_simple_pagination();
}
}
add_action( 'genesis_after_post_content', 'navpost' );
It just adds links to post excerpts in the category archive but I already have them from genesis. I would like to have next/prev links on each post. Is it possible? Thanks