Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter('comment_post_redirect', 'redirect_after_comment'); | |
function redirect_after_comment(){ | |
wp_redirect('http://example.com/thankyou.html'); | |
exit(); | |
} | |
?> |
Note
Description | コメント送信後のリダイレクト先を設定する |
---|---|
WordPress Ver. | 3.3.1 |
Via | Redirect commenter to thank you post or page |