WC_API_Products::get_products_count()publicWC 2.1

Get the total number of products

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

Хуков нет.

Возвращает

Массив|WP_Error.

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

$WC_API_Products = new WC_API_Products();
$WC_API_Products->get_products_count( $type, $filter );
$type(строка)
-
По умолчанию: null
$filter(массив)
-
По умолчанию: array()

Список изменений

С версии 2.1 Введена.

Код WC_API_Products::get_products_count() WC 8.7.0

public function get_products_count( $type = null, $filter = array() ) {
	try {
		if ( ! current_user_can( 'read_private_products' ) ) {
			throw new WC_API_Exception( 'woocommerce_api_user_cannot_read_products_count', __( 'You do not have permission to read the products count', 'woocommerce' ), 401 );
		}

		if ( ! empty( $type ) ) {
			$filter['type'] = $type;
		}

		$query = $this->query_products( $filter );

		return array( 'count' => (int) $query->found_posts );
	} catch ( WC_API_Exception $e ) {
		return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => $e->getCode() ) );
	}
}