Tuesday, February 8, 2022

[FIXED] In wordpress, how to redirect after a comment back to the referring page?

Issue

I have comments enabled on different types of pages in Wordpress (archive, tag, search, main page), and after a user posts a comment I would like them to be redirected back to their referring page, not to the single post page. Any ideas?


Solution

Put this in your functions.php:

add_filter('comment_post_redirect', 'redirect_after_comment');
function redirect_after_comment($location)
{
return $_SERVER["HTTP_REFERER"];
}


Answered By - Niklas T

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.