I didnt really understand the above answer due to my lack of php skills.
But i managed to solve it.
In the Single.php file all you need to change is this part:
<?php
$prev_post = get_previous_post();
$next_post = get_next_post();
?>
to
<?php
$prev_post = get_previous_post(true);
$next_post = get_next_post(true);
?>
-
This reply was modified 9 years, 9 months ago by 0611.