wp-cron not working

时间:2016-12-31 作者:DaFois

这是我在中定义的wp cronfunction.php 文件,但我在错误日志中没有得到任何结果,该事件在cron列表中,但如果启动它,则不会发生任何事情。

有人知道我做错了什么吗?

function cron_daily_whatever() {
  if (!wp_next_scheduled(\'check_daily_event\')) {
    wp_schedule_event(time(),\'daily\',\'check_daily_event\');
  }
}

function my_do_this_daily() {
    error_log(\'check\');
}

add_action(\'wp\',\'cron_daily_whatever\');
add_action(\'check_daily_event\',\'my_do_this_daily\');

1 个回复
SO网友:haguo
    
function cron_daily_whatever() {
  if (!wp_next_scheduled(\'check_daily_event\')) {
    wp_schedule_event(time(),\'daily\',\'check_daily_event\');
  }
}

function check_daily_event() {
    error_log(\'check\');
}

add_action(\'wp\',\'cron_daily_whatever\');
add_action(\'check_daily_event\',\'check_daily_event\');