woocommerce_after_product_ordering
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
woocommerce_after_product_ordering
woocommerce/includes/class-wc-ajax.php 2140
do_action( 'woocommerce_after_product_ordering', $sorting_id, $menu_orders );