woocommerce_get_checkout_order_received_url хук-фильтр . WC 1.0
Использование
add_filter( 'woocommerce_get_checkout_order_received_url', 'filter_function_name_4391', 10, 2 ); function filter_function_name_4391( $order_received_url, $that ){ // filter... return $order_received_url; }
- $order_received_url
- -
- $that
- -
Где вызывается хук
woocommerce_get_checkout_order_received_url
woocommerce/includes/class-wc-order.php 1585
return apply_filters( 'woocommerce_get_checkout_order_received_url', $order_received_url, $this );