Skip to content

Instantly share code, notes, and snippets.

@aesqe
Created June 2, 2013 00:18
Show Gist options
  • Save aesqe/5692142 to your computer and use it in GitHub Desktop.
Save aesqe/5692142 to your computer and use it in GitHub Desktop.
Add additional e-mail addresses to WordPress comment notifications
<?php
function filter_comment_notification_headers( $message_headers )
{
$notify_other_people = array(
'"John Smith" <john.smith@email.address>',
'"Jane Smith" <jane.smith@email.address>'
);
$message_headers .= "\n" .
'CC: ' . implode(', ', $notify_other_people );
return $message_headers;
}
add_filter('comment_notification_headers', 'filter_comment_notification_headers');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment