'precios-unitarios', * 'tag' => 'concreto', * 'posts_per_page' => 6, * 'orderby' => 'date', * 'order' => 'DESC' * ]; * * $query = $builder->build($params); * ``` * * @param array $params Parametros de filtro y configuracion * Keys soportadas: category, exclude_category, tag, * author, posts_per_page, orderby, order, offset, * exclude_posts, paged * * @return \WP_Query Query configurado listo para iterar */ public function build(array $params): \WP_Query; }