WC_API_Products::get_products_count()
Get the total number of orders
Метод класса: 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 API Products::get products count WC 7.5.1
public function get_products_count( $type = null, $filter = array() ) { if ( ! empty( $type ) ) { $filter['type'] = $type; } if ( ! current_user_can( 'read_private_products' ) ) { return new WP_Error( 'woocommerce_api_user_cannot_read_products_count', __( 'You do not have permission to read the products count', 'woocommerce' ), array( 'status' => 401 ) ); } $query = $this->query_products( $filter ); return array( 'count' => (int) $query->found_posts ); }