'comic', 'post_status' => 'publish', 'paged' => 1, 'orderby' => 'post_date', 'order' => $comic_order, ); $comics_query = new WP_Query($comics_args); if ($comics_query->have_posts()): ?>

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. */ set_query_var('latest_collection_id', 0); set_query_var('show_comic_number', true); set_query_var('series_id', null); get_template_part('template-parts/content', 'infinitescrollcomic'); endwhile; $comics_query = null; wp_reset_postdata(); endif; endif; ?>