$series_id, 'post_type' => 'comic', 'post_status' => 'publish', 'posts_per_page' => 1, 'orderby' => 'post_date', 'order' => $comic_order, ); $single_comic_query = new WP_Query($single_comics_args); /* Start the Loop */ while ($single_comic_query->have_posts()): $single_comic_query->the_post(); set_query_var('latest_collection_id', 0); if (!$series_id) { set_query_var('series_id', null); } else { set_query_var('series_id', $series_id); } get_template_part('template-parts/content', 'singlecomic'); ?>
 
$series_id, 'post_type' => 'comic', 'post_status' => 'publish', 'posts_per_page' => get_option('posts_per_page'), 'paged' => $comics_paged, 'orderby' => 'post_date', 'order' => $comic_order, ); $comics_query = new WP_Query($comics_args); ?> 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); if (!$series_id) { set_query_var('show_comic_number', true); $parent_id = !empty(get_post_meta(get_the_ID(), 'post_parent', true)) ? (int) get_post_meta(get_the_ID(), 'post_parent', true) : null; set_query_var('series_id', $parent_id); } else { set_query_var('series_id', $series_id); } get_template_part('template-parts/content', 'comiclistitem'); endwhile; ?>
'?comics_paged=%#%#comics-section', 'current' => $comics_paged, 'total' => $comics_query->max_num_pages, 'prev_text' => wp_kses(__('', 'toocheke'), array('i' => array('class' => array()))), 'next_text' => wp_kses(__('', 'toocheke'), array('i' => array('class' => array()))), 'add_args' => array('blog_paged' => $blog_paged), )); if ($comic_links): ?>
'chapters', 'style' => 'none', 'orderby' => 'meta_value_num', 'order' => $comic_order, 'meta_query' => array( array( 'key' => 'chapter-order', 'type' => 'NUMERIC', )), 'show_count' => 0, 'number' => 6, ); $chapters_list = get_categories($chapter_args); if ($chapters_list) { ?>

1, 'post_type' => 'comic', 'order' => $chapter_comic_order, 'post_parent' => $series_id, "tax_query" => array( array( 'taxonomy' => "chapters", // use the $tax you define at the top of your script 'field' => 'term_id', 'terms' => $chapter->term_id, // use the current term in your foreach loop ), ), 'no_found_rows' => true, 'update_post_meta_cache' => false, 'update_post_term_cache' => false, ); $first_comic_query = new WP_Query($args); // The Loop while ($first_comic_query->have_posts()): $first_comic_query->the_post(); $link_to_first_comic = add_query_arg('sid', $series_id, get_post_permalink()); // Display the image of the first post in category wp_reset_postdata(); printf(wp_kses_data('%1$s'), ''; endwhile; } // Reset Post Data wp_reset_postdata(); ?>