我正在使用多站点,希望通过特定/有条件的站点发送电子邮件。我的用例:
打开save_post
...
我的初始代码:
function conditional_multisite_wp_mail( $post_id, $post, $update ) {
$post_type = get_post_type($post_id);
$to1 = \'hi@meow.com\';
$to2 = \'hola@miau.com\';
$subject = \'testing right meow\';
$message = \'woof\';
$headers = \'From: Derp < derp@herp.com > \\r\\n\';
// Trying to \'break\' current site, set the site by ID
switch_to_blog(2);
wp_mail( $to1, $subject, $message, $headers, $attachments );
// ... then restore it to the current site
restore_current_blog();
wp_mail( $to2, $subject, $message, $headers, $attachments );
}
add_action( \'save_post\', \'conditional_multisite_wp_mail\', 10, 3 );
提前感谢!