Skip to content

Instantly share code, notes, and snippets.

@landbryo
Last active February 6, 2019 17:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save landbryo/29218b1e52b38565bce38ae81ebcbbdd to your computer and use it in GitHub Desktop.
Save landbryo/29218b1e52b38565bce38ae81ebcbbdd to your computer and use it in GitHub Desktop.
Add multiple comment recipients to WordPress
<?php
function comment_recipients( $emails, $comment_id ){
$recipient_email = array(
'him@example.com',
'her@example.com'
);
return $recipient_email;
}
add_filter( 'comment_notification_recipients', 'comment_recipients', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment