woocommerce_price_filter_widget_min_amount filter-hookWC 1.0

Usage

add_filter( 'woocommerce_price_filter_widget_min_amount', 'wp_kama_woocommerce_price_filter_widget_min_amount_filter' );

/**
 * Function for `woocommerce_price_filter_widget_min_amount` filter-hook.
 * 
 * @param  $floor() * $step 
 *
 * @return 
 */
function wp_kama_woocommerce_price_filter_widget_min_amount_filter( $floor() * $step ){

	// filter...
	return $floor() * $step;
}
$floor() * $step
-

Where the hook is called

WC_Widget_Price_Filter::widget()
woocommerce_price_filter_widget_min_amount
woocommerce/includes/widgets/class-wc-widget-price-filter.php 107
$min_price = apply_filters( 'woocommerce_price_filter_widget_min_amount', floor( $min_price / $step ) * $step );

Where the hook is used in WooCommerce

Usage not found.