'DESC', 'post__not_in' => get_option( 'sticky_posts' ), 'tax_query' => array( array( 'taxonomy' => 'post_format', 'terms' => array( 'post-format-aside', 'post-format-link', 'post-format-quote', 'post-format-status' ), 'field' => 'slug', 'operator' => 'NOT IN', ), ), 'no_found_rows' => true, ); // Our new query for the Recent Posts section. $recent = new WP_Query( $recent_args ); if ( $recent->have_posts() ) : while ( $recent->have_posts() ) : $recent->the_post(); ?> global $more; $more = 0; get_template_part( 'content', get_post_format() ); endwhile; endif; wp_reset_postdata();