Automattic\WooCommerce\StoreApi\Schemas\V1

ProductCategorySchema::get_item_response()publicWC 1.0

Convert a term object into an object suitable for the response.

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

Хуков нет.

Возвращает

Массив.

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

$ProductCategorySchema = new ProductCategorySchema();
$ProductCategorySchema->get_item_response( $term );
$term(\WP_Term) (обязательный)
Term object.

Код ProductCategorySchema::get_item_response() WC 8.7.0

public function get_item_response( $term ) {
	$response = parent::get_item_response( $term );
	$count    = get_term_meta( $term->term_id, 'product_count_product_cat', true );

	if ( $count ) {
		$response['count'] = (int) $count;
	}

	$response['image']        = $this->image_attachment_schema->get_item_response( get_term_meta( $term->term_id, 'thumbnail_id', true ) );
	$response['review_count'] = $this->get_category_review_count( $term );
	$response['permalink']    = get_term_link( $term->term_id, 'product_cat' );

	return $response;
}