get_eventos_no_data
// WP_Query arguments $args = array( 'post_type' => array( 'sesc-eventos' ), 'post_status' => array( 'publish' ), 'posts_per_page' => '-1', 'ignore_sticky_posts' => false, 'tax_query' => array( array( 'taxonomy' => 'category', 'terms' => 'spaceflight', 'field' => 'slug', ), ), 'meta_query' => array( array( 'key' => 'color', 'value' => 'blue', ), ), ); // The Query $query = new WP_Query( $args );