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

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

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
-

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

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

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

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