Skip to content

Instantly share code, notes, and snippets.

@pascalmaddin
Created June 11, 2013 08:36
Show Gist options
  • Save pascalmaddin/5755332 to your computer and use it in GitHub Desktop.
Save pascalmaddin/5755332 to your computer and use it in GitHub Desktop.
WordPress - Redirect commenter to thank you post or page
<?php
add_filter('comment_post_redirect', 'redirect_after_comment');
function redirect_after_comment(){
wp_redirect('/thank-you-page/');
exit();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment