woocommerce_after_product_ordering
Использование
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
- -
Где вызывается хук
woocommerce_after_product_ordering
woocommerce/includes/class-wc-ajax.php 2316
do_action( 'woocommerce_after_product_ordering', $sorting_id, $menu_orders );