• Hi there coders, kindly help me how to show next and previous links or post of the same category..Thank you..I have a art blog wherein I want to show artworks of the same category.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • You can make a child theme and change it in the template. It’s easiest if the theme already uses the_post_navigation.

    the_post_navigation( array(
    	'in_same_term' => true,
    	'taxonomy' => 'category',
    ));

    If your theme does not use this function, it’s best to ask at the theme’s support forum for the changes to make.

Viewing 1 replies (of 1 total)
  • The topic ‘Show Next Prev Link – Help Me Create a Navigation in the Same Category’ is closed to new replies.