Skip to content

Instantly share code, notes, and snippets.

@bigdigital
Created January 31, 2017 15:45
Show Gist options
  • Save bigdigital/09a5d51e37c99e44e06b23181c97af7a to your computer and use it in GitHub Desktop.
Save bigdigital/09a5d51e37c99e44e06b23181c97af7a to your computer and use it in GitHub Desktop.
Custom redirect after comment posted in wordpress
add_action('comment_post_redirect', 'redirect_after_comment');
function redirect_after_comment() {
return 'http://example.com';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment