woocommerce_product_export_{$this->export_type}_query_args

woocommerce_product_export_{$this->export_type}_query_args

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_product_export_{$this->export_type}_query_args') is found 1 times:

  • /includes/export/class-wc-product-csv-exporter.php line 178
     
    		if ( ! empty( $this->product_category_to_export ) ) {
    			$args['category'] = $this->product_category_to_export;
    		}
    		$products = wc_get_products( apply_filters( "woocommerce_product_export_{$this->export_type}_query_args", $args ) );
    
    		$this->total_rows  = $products->total;
    		$this->row_data    = array();
    		$variable_products = array();
    
    		foreach ( $products->products as $product ) {