#checkout #체크아웃 #woocommerce #redirect
“https://example.com/” 부분을 원하는 url로 변경해서 사용할 것
add_action( 'woocommerce_thankyou', 'kayart_thank_you_page_redirect', 10, 1 );
function kayart_thank_you_page_redirect( $order_id ){
$order = wc_get_order( $order_id );
$url = 'https://example.com/';
if ( ! $order->has_status( 'failed' ) ) {
wp_redirect( $url );
exit;
}
}