記事へのコメント送信後にサンキューページにリダイレクトさせる

Ads

Code

<?php
add_filter('comment_post_redirect', 'redirect_after_comment');
function redirect_after_comment(){
wp_redirect('http://example.com/thankyou.html');
exit();
}
?>
view raw gistfile1.aw hosted with ❤ by GitHub

Note

Description コメント送信後のリダイレクト先を設定する
WordPress Ver. 3.3.1
Via Redirect commenter to thank you post or page