我正在尝试在主题的functions.php中安排一个事件,但我无法理解 “火”。我正在使用Cron View插件,它显示事件正确安排但是什么时候没有发生
这是我的代码
if ( ! wp_next_scheduled( 'prefix_hourly_event' ) ) {
wp_schedule_event( time(), 'hourly', 'prefixhourlyevent');
}
add_action( 'prefixhourlyevent', 'prefix_do_this_hourly' );
function prefix_do_this_hourly() {
wp_mail('myemail@gmail.com','Cron is working', 'Cron is working: ','','');
}
答案 0 :(得分:6)
您可以转到http://www.example.com/wp-cron.php?doing_cron手动运行WordPress cron作业。在这里,您可以看到脚本创建的任何错误,在调试wp计划任务时非常有用。