Change recipient of email notifications for new comments in WordPress Estimated reading: 1 minute 231 views Contributors As standard in WordPress, any new comments will be sent to the admin email or the post author only. If you to change the recipient of email notifications for new comments in WordPress, add the following code to functions.php either in your theme folder or even better, in your child theme folder. Copyfunction if_change_recipient_comment_notification( $emails, $comment_id ){ $recipient_email = 'example@example.com'; return array( $recipient_email ); } add_filter( 'comment_notification_recipients', 'if_change_recipient_comment_notification', 10, 2 ); NOTE: This guide is for WordPress developers or users that know how to access the php files Change recipient of email notifications for new comments in WordPress - PreviousUpload a WordPress Plugin from a File