woocommerce_get_return_url filter-hook . WC 1.0
Usage
add_filter( 'woocommerce_get_return_url', 'filter_function_name_1944', 10, 2 ); function filter_function_name_1944( $return_url, $order ){ // filter... return $return_url; }
- $return_url
- -
- $order
- -
Where the hook is called
woocommerce_get_return_url
woocommerce/includes/abstracts/abstract-wc-payment-gateway.php 231
return apply_filters( 'woocommerce_get_return_url', $return_url, $order );