我已经编写了以下函数,该函数将在发布帖子时向每个用户发送电子邮件。它工作得很好,但我遇到的问题是,由于需要在while循环中运行的次数,发布帖子可能需要一些时间。目前有110名成员。
现在我的问题是,是否有一种简单的方法可以延迟此过程,以便帖子可以发布,然后将电子邮件发送功能作为一项任务在后台处理?
function send_email_notifications() {
$args = array(
'post_type' => 'members',
'orderby' => 'title',
'order' => 'ASC',
'posts_per_page' => -1,
'post_parent' => 0,
'post_status' => array('pending', 'draft', 'publish'),
);
$emailSearch = new WP_Query($args);
if(isset($_REQUEST['send_email_notification'])) {
if($emailSearch->have_posts()) {
while($emailSearch->have_posts()) {
$emailSearch->the_post();
wp_mail('test@test.com', 'Test', 'Test');
}
}
}
}
add_action('publish_notifications', 'send_email_notifications', 10, 2);
答案 0 :(得分:2)
你可能会发现WordPress Cron很有用。在您的publish_notifications()
功能中,您可以:
$args['subject'] = //something
$args['message'] = //something else
$args['to'] = //an email address
wp_schedule_single_event( time() + 3600, 'email_about_post', $args);
然后在其他地方,您可以拥有类似的东西:
function email_about_post_function($args) {
wp_mail($args['to'], $args['subject'], $args['message']);
}
add_action( 'email_about_post','email_about_post_function' );
警告 - 我没有测试此特定代码。阅读更多https://codex.wordpress.org/Function_Reference/wp_schedule_event