Automattic\WooCommerce\Admin\API\Reports
DataStore::get_excluded_variations
Returns comma separated ids of excluded variations, based on query arguments from the user.
Method of the class: DataStore{}
No Hooks.
Returns
string.
Usage
// protected - for code of main (parent) or child class $result = $this->get_excluded_variations( $query_args );
- $query_args(array) (required)
- Parameters supplied by the user.
DataStore::get_excluded_variations() DataStore::get excluded variations code WC 11.1.1
protected function get_excluded_variations( $query_args ) {
return $this->get_filtered_ids( $query_args, 'variation_excludes' );
}