WordPress
3
Вклад в тег
add_action('wpcf7_mail_sent', 'wpcf7mailsent_redirect');
function wpcf7mailsent_redirect() {
if ( 'wpcf7_mail_sent' == true ) {
$new_url = 'https://ya.ru';
header('Location: '.$new_url);
exit();
}
}