woocommerce_after_set_term_order action-hookWC 1.0

After a term has had it's order set.

Usage

add_action( 'woocommerce_after_set_term_order', 'wp_kama_woocommerce_after_set_term_order_action', 10, 3 );

/**
 * Function for `woocommerce_after_set_term_order` action-hook.
 * 
 * @param  $term     
 * @param  $index    
 * @param  $taxonomy 
 *
 * @return void
 */
function wp_kama_woocommerce_after_set_term_order_action( $term, $index, $taxonomy ){

	// action...
}
$term
-
$index
-
$taxonomy
-

Where the hook is called

wc_reorder_terms()
woocommerce_after_set_term_order
woocommerce/includes/wc-term-functions.php 335
do_action( 'woocommerce_after_set_term_order', $term, $index, $taxonomy );

Where the hook is used in WooCommerce

Usage not found.