我正在尝试在主题中安排一个事件,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: ','','');
}