'post', 'post_status' => 'publish', 'posts_per_page' => absint( $you_may_have_missed_no_of_posts_to_show ), 'order' => $post_order[1], 'order_by' => $post_order[1], 'ignore_sticky_posts' => true ]; if( isset( $you_may_have_missed_post_categories ) ) $post_query_args['cat'] = $post_categories_id_args; if( isset( $you_may_have_missed_posts_to_include ) ) $post_query_args['post__in'] = $post_to_include_id_args; if( $hide_posts_with_no_featured_image ) : $post_query_args['meta_query'] = [ [ 'key' => '_thumbnail_id', 'compare' => 'EXISTS' ] ]; endif; $post_query = new \WP_Query( $post_query_args ); if( $post_query->have_posts() ) : while( $post_query->have_posts() ) : $post_query->the_post(); ?>