landbryo
2/6/2019 - 5:32 PM

Add multiple comment recipients to WordPress

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 );