'post', 'tax_query' => array( array( 'taxonomy' => 'category', 'field' => 'slug', 'terms' => $blogs_cat, ), ), 'posts_per_page' => $blog_posts, 'paged' => $paged, ); $query = new WP_Query($args); if ( $query->have_posts() ): while ($query->have_posts() ) : $query->the_post(); get_template_part( 'template-parts/content', get_post_format() ); endwhile; if (function_exists("unicon_lite_pagination")) : unicon_lite_pagination(); endif; endif; wp_reset_postdata(); ?>