updated   : May 15, 2012
we now have 588 snippets
By : , on September 13, 2011 9:00 am

Redirect commenter to thank you post or page

wordpress snippet

Adding this snippet to the functions.php of your wordpress theme will redirect a commenter to any post or page you specify. Consider redirecting a commenter to a thank you page when they comment on a post.

snippet :  PHPcopy
add_filter('comment_post_redirect', 'redirect_after_comment');
function redirect_after_comment(){
      wp_redirect('/page/');
      exit();
}