Automattic\WooCommerce\StoreApi\Routes\V1

ProductAttributes::get_route_response()protectedWC 1.0

Get a collection of attributes.

Метод класса: ProductAttributes{}

Хуков нет.

Возвращает

\WP_REST_Response.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_route_response( $request );
$request(\WP_REST_Request) (обязательный)
Request object.

Код ProductAttributes::get_route_response() WC 9.6.0

protected function get_route_response( \WP_REST_Request $request ) {
	$ids    = wc_get_attribute_taxonomy_ids();
	$return = [];

	foreach ( $ids as $id ) {
		$object   = wc_get_attribute( $id );
		$data     = $this->prepare_item_for_response( $object, $request );
		$return[] = $this->prepare_response_for_collection( $data );
	}

	return rest_ensure_response( $return );
}