woocommerce_after_product_ordering action-hookWC 1.0

Usage

add_action( 'woocommerce_after_product_ordering', 'wp_kama_woocommerce_after_product_ordering_action', 10, 2 );

/**
 * Function for `woocommerce_after_product_ordering` action-hook.
 * 
 * @param  $sorting_id  
 * @param  $menu_orders 
 *
 * @return void
 */
function wp_kama_woocommerce_after_product_ordering_action( $sorting_id, $menu_orders ){

	// action...
}
$sorting_id
-
$menu_orders
-

Where the hook is called

WC_AJAX::product_ordering()
woocommerce_after_product_ordering
woocommerce/includes/class-wc-ajax.php 2140
do_action( 'woocommerce_after_product_ordering', $sorting_id, $menu_orders );

Where the hook is used in WooCommerce

Usage not found.