woocommerce_widget_price_filter_end action-hookWC 1.0

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

In file: /templates/content-widget-price-filter.php
woocommerce_widget_price_filter_end
woocommerce/templates/content-widget-price-filter.php 42
<?php do_action( 'woocommerce_widget_price_filter_end', $args ); ?>

Where the hook is used in WooCommerce

Usage not found.