Filters the location URI to send the commenter after posting.
Parameters
$location
string- The
'redirect_to'
URI sent via $_POST. $comment
WP_Comment- Comment object.
Source
$location = apply_filters( 'comment_post_redirect', $location, $comment );
Changelog
Version | Description |
---|---|
2.0.5 | Introduced. |
Sometimes you want to build a page with various custom posts displayed on the same page and use one of these post’s comments to handle the page comments. However, when you submit a comment associate with a given post, the submit button redirects you to that post’s permalink, and not to your original page. To overcome this, you need to filter the redirect location such as,
Don’t forget to also change the ‘Reply’ button links on comments using the filter
comment_reply_link