WC_Coupon_Data_Store_CPT::get_tentative_usage_count
Returns tentative usage count for coupon.
Method of the class: WC_Coupon_Data_Store_CPT{}
No Hooks.
Returns
Int. Tentative usage count.
Usage
$WC_Coupon_Data_Store_CPT = new WC_Coupon_Data_Store_CPT(); $WC_Coupon_Data_Store_CPT->get_tentative_usage_count( $coupon_id );
- $coupon_id(int) (required)
- Coupon ID.
WC_Coupon_Data_Store_CPT::get_tentative_usage_count() WC Coupon Data Store CPT::get tentative usage count code WC 10.3.3
public function get_tentative_usage_count( $coupon_id ) {
global $wpdb;
return $wpdb->get_var(
// phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
$this->get_tentative_usage_query( $coupon_id )
);
}