'comics', 'tax_query' => array( array ( 'taxonomy' => 'comic_locations', 'field' => 'slug', 'terms' => $comic_locations, ) ), 'post_status' => 'publish', 'posts_per_page' => 10, 'paged' => $comics_paged, 'orderby' => 'post_date', 'order' => 'DESC', ); $comics_query = new WP_Query( $comics_args ); /* Start the Loop */ while ( $comics_query->have_posts() ) : $comics_query->the_post(); /* * Include the Post-Type-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Type name) and that will be used instead. */ get_template_part( 'template-parts/content', 'comiclistitem' ); endwhile; ?>