• How can i put the post navigation on the same category. When i’m in a post and i use the navigations buttons for previous or next post i want to navigate just on tha same category of the post where i am.

Viewing 2 replies - 1 through 2 (of 2 total)
  • HEllo zemanelsilva94,

    Please pass the third parameter as “TRUE” for next_post_link() and previous_post_link() template tags in your single page template.

    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 8 years, 6 months ago by 0611.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘post navigation same category’ is closed to new replies.