woocommerce_widget_price_filter_start
Usage
add_action( 'woocommerce_widget_price_filter_start', 'wp_kama_woocommerce_widget_price_filter_start_action' );
/**
* Function for `woocommerce_widget_price_filter_start` action-hook.
*
* @param $args
*
* @return void
*/
function wp_kama_woocommerce_widget_price_filter_start_action( $args ){
// action...
}
- $args
- -
Where the hook is called
woocommerce_widget_price_filter_start
woocommerce/templates/content-widget-price-filter.php 21
<?php do_action( 'woocommerce_widget_price_filter_start', $args ); ?>