WordPress利用“伪cron”机制实现定时任务。如果想把某些功能加到WordPress的cron里,可以使用下面的方法。
首先打开functions.php文件,粘贴入以下代码:
if (!wp_next_scheduled(‘my_task_hook’)) {
wp_schedule_event( time(), ‘hourly’, ‘my_task_hook’ );
}add_action( ‘my_task_hook’, ‘my_task_function’ );
function my_task_function() {
wp_mail(‘you@yoursite.com’, ‘Automatic email’, ‘Hello, this is an automatically scheduled email from WordPress.’);
}
注意,在第一行里,我们创建了一个任务,并确认任务名没有重复。然后通过add_action函数把任务加进WordPress的定时任务中。而在任务函数的声明中,我们可以看到这个任务是用来发送邮件的。