您需要添加custom meta box 列出站点上的所有用户。我不知道如何创建一个列出用户的列表,但这应该不会太难。
然后,您将在wp\\u insert\\u post上运行一个钩子,以验证哪些用户已被检查,并向每个用户发送一封电子邮件。类似于:
add_action(\'wp_insert_post\', \'my_function\');
function my_function() {
$user_ids = "whatever you saved it as in your custom meta box"; // grab the user ids of who you want to email in an array
foreach($user_ids as $user_id)
$user_data = get_userdata($user_id);
wp_mail($user_data->user_email, "your subject", "your message");
}
return;
}