landbryo
11/19/2018 - 5:54 PM

Simple function to change comment recipient emails

Simple function to change comment recipient emails

//////////////////////////////
// CHANGE COMMENT RECIPIENT //
//////////////////////////////

function override_comment_notice( $emails, $comment_id ) {
    $emails = array('info@example.com', 'webmaster@example.com');
 
    return $emails;
}

add_filter( 'comment_moderation_recipients', 'override_comment_notice', 10, 2 );
add_filter( 'comment_notification_recipients', 'override_comment_notice', 10, 2 );