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