How only display all post related to category
You’ve already got code to figure out which category you want to show posts from, here is how you would grab all the posts in that category: // create a query to grab our posts in category of ID $postcat $q = new WP_Query(array( ‘cat’ => $postcat)); if($q->have_posts()){ // foreach post found while($q->have_posts()){ $q->the_post(); // … Read more