Thread Starter
gokced
(@gokced)
Thank you for your quick answer and the information you submitted.
I solved the problem with another plugin that work well within the table.
Best,
Gokce
Thread Starter
gokced
(@gokced)
Hello, I added the code snippet to functions.php, but be careful with php files if you don’t use a framework/ theme that gives you opportunity to edit them.
<?php
add_action(‘genesis_after_entry’, ‘sk_custom_post_nav’);
function sk_custom_post_nav() {
if ( !is_singular(‘post’) )
return;
echo ‘<div class=”prev-next-post-links”>’;
previous_post_link(‘<div class=”previous-post-link”>« Previous Post: %link</div>’, ‘%title‘, true);
next_post_link(‘<div class=”next-post-link”>Next Post: %link »</div>’, ‘%title‘, true);
echo ‘</div>’;
}
Thread Starter
gokced
(@gokced)
Ok, I got it and resolved.
Thank you to lead me to the solution.
Best