WC_API_Products::get_products_count()
Get the total number of orders
Method of the class: WC_API_Products{}
No Hooks.
Return
Array|WP_Error
.
Usage
$WC_API_Products = new WC_API_Products(); $WC_API_Products->get_products_count( $type, $filter );
- $type(string)
- -
Default: null - $filter(array)
- -
Default: array()
Changelog
Since 2.1 | Introduced. |
WC_API_Products::get_products_count() WC API Products::get products count code WC 7.7.0
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 ); }