woocommerce_after_set_term_order action-hook . WC 1.0
After a term has had it's order set.
Usage
add_action( 'woocommerce_after_set_term_order', 'action_function_name_8010', 10, 3 ); function action_function_name_8010( $term, $index, $taxonomy ){ // action... }
- $term
- -
- $index
- -
- $taxonomy
- -
Where the hook is called
woocommerce_after_set_term_order
woocommerce/includes/wc-term-functions.php 335
do_action( 'woocommerce_after_set_term_order', $term, $index, $taxonomy );