回答が見つかりました。
私はエディタユーザーのロールで新しいユーザーを作成しました。作成した新しいエディタユーザーに通知を送信するために、コードの後にエディタユーザーID「5」を追加しました。
function se_comment_moderation_recipients($emails, $comment_id) {
$comment = get_comment($comment_id);
$post = get_post($comment->comment_post_ID);
$user = get_user_by('id', '5');
// Return only the post author if the author can modify.
if (user_can($user->ID, 'edit_published_posts') && ! empty($user->user_email)) {
$emails = array($user->user_email);
}
return $emails;
}
add_filter('comment_moderation_recipients', 'se_comment_moderation_recipients', 11, 2);
add_filter('comment_notification_recipients', 'se_comment_moderation_recipients', 11, 2);
Reference
そして、これは動作します!