woocommerce_after_set_term_order хук-событиеWC 1.0

After a term has had it's order set.

Использование

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
-

Где вызывается хук

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 );

Где используется хук в WooCommerce

Использование не найдено.