Buscar post por categoria y fecha
// WP_Query arguments $args = array( 'post_type' => array( 'post' ), 'posts_per_page' => '-1', 'tax_query' => array( array( 'taxonomy' => 'category', 'terms' => '5', 'field' => 'term_id', ), ), ); // The Query $query = new WP_Query( $args );