Just change to to
address for these emails.
Sample code, not tested:
// hook in late, to avoid side effects.
add_filter( 'comment_notification_headers', 'wpse_73855__change_comment_notify_to' );
function wpse_73855__change_comment_notify_to( $input )
{
if ( 'comment_notification_headers' === current_filter() )
{
add_filter( 'wp_mail', __FUNCTION__ );
return $input;
}
$input['to'] = get_option( 'admin_email' );
remove_filter( current_filter(), __FUNCTION__ );
return $input;
}
Related Posts:
- Error While Sending Comment
- How to prevent users/authors from seing IP/email of new commentators?
- Subscribe to a post’s comments without posting a comment yourself
- How to change the email notification recipient (user) for new comments?
- Change Comment Author Display Name
- Check If comment author is registered
- Comment Author Name In Reply Form
- Display all comments or recent comments per user on author page
- how to make author to write comment on only his own posts?
- How to check if commenter is the_author?
- If new comment posted in custom post – send notification to custom email from custom field
- Disable Admin account being emailed for comment notification
- WordPress comments email notification for authors
- Let user edit his own comment
- Send Notifications to All Admins
- edit comments capability for authors
- Why are authors allowed to approve comments on their posts? How to revoke privilege?
- Reject Comments Based on Author Email
- Hide notifications regarding new comments
- List user comments in author page
- Author can only see own post comment and can moderate
- WordPress comments on users profile
- Comment displaying full name even after setting another display name?
- Notify post author for a new comment on his post?
- wp-comment author- url +, email filter hook
- Reply By Email to comment notifications
- comment reply by email
- How can I get list of emails of users who commented on a post?
- Woocommerce comments subscription [closed]
- How many members have made comments approved for an article?
- Commentlist: bypostauthor problem with children list
- How do I disable the discussion notification emails to us when a comment is “approved” and when an adiministrator replies?
- Sent comments notifications to multiple users
- Only Allow post author and “Premium” Role user to comment
- How to get Post title by locale with Qtranslate-X
- get_comment_author_link not working properly
- Get Comment Author ID on the fly while posting
- How to use filter on comment submission/insert
- How can I hide comment of the authors from their published posts?
- WordPress Custom Local Avatar not showing in comments
- Attaching author tag to the comment
- Author name length character limit?
- Comments counter only for Authors Posts
- Comments pagination on author page
- Change author, disable comments, enable trackbacks for all items in library
- Prevent author from editing comments from others in their post
- Not receiving any e-mails after new comment
- URLs to user page is broken
- Comment notification not working
- How to ‘If Author’ Comments Check
- Auto approve all comments (editor)
- How do I comment out a block of tags in XML?
- R: Comment out block of code
- Why do I get comment spam even with Akismet and Captcha?
- What tools are available for managing/writing to WordPress? [closed]
- How to rearrange fields in comment_form()
- setting comments off as default for pages and custom post types?
- Select subscriber as author of post in admin panel?
- Is it possible to pull comments from facebook into your blog?
- Filtering the Admin Comments List to Show Only Comments from the Current User?
- Non-threaded comment replies with link to original comment
- Approve comment hook?
- Commenting in user profile page?
- How to change “You must be logged in to post a comment.”
- comment_post_ID 0 (cannot remove from dashboard)
- Disable comments on all posts/pages
- How do I delete all comments from a specific old blog post?
- Removing the “Website” Field from Comments and Replies?
- Stop WordPress redirecting comment-page-1 to the post page?
- Importing old Disqus comments into WordPress
- How to add a class to the comment submit button?
- How to wrap submit button of comment form with div
- How to enable comments for pending and draft posts?
- Using WordPress’ WYSIWYG for comments
- Enable Submit Comment Without Page Reload (Using Ajax)?
- What for is the table “wp_commentmeta” exactly?
- Getting Post Comments for post ID using WP_Query() and a Custom Loop?
- Add option to disable comments on a per posts basis?
- Resetting comment count
- When importing – failed to import: Invalid post type feedback
- Redirect user to a custom url after submitting the comment
- Paginate result set from $wpdb->get_results()
- Would switching to InnoDB from MyISAM improve performance of comments table?
- Custom comment type based on thread level
- How to add internal, revision comments to page updates
- How to load and show comments with AJAX instead of pagination?
- Linking to Page Showing Only Comments Without Parent Post
- Comment Reply javascript
- How do we remove the H3 tag for the reply-title I.D
- Comments not appearing at all
- comments reply script not working
- How to display comment form error messages in the same page
- 3 moderators to approve comment
- How to deal with small scale comment spam on small commercial sites? [closed]
- Display Authors Comments on Profile Page
- What should I do to make generated avatars different for anonymous comments?
- A plugin where users can comment with Facebook or Twitter or OpenID [closed]
- Comments screen in backend, how to disable email address of commenter for non admins
- Add comments from the admin panel?
- How can I limit the number of comments per registered user per day?