Category page with posts from 2 different childcategories

To include posts from one or more specific categories, you can use and define category__in parameter in your WordPress query. Like this, here is an example. $args = array( ‘category__in’ => array( 11, 15 ), ); $my_query = new WP_Query( $args ); if ( $my_query->have_posts() ) : while ( $my_query->have_posts() ) : $my_query->the_post(); get_template_part( ‘content’, … Read more