我对WP-Cron不太熟悉,但我在我的一个网站上使用了它们。我为每小时设置一个自定义查询:
add_action( \'init\', function () {
if( ! wp_next_scheduled( \'expire_cpt\' ) ) {
wp_schedule_event( time(), \'hourly\', \'expire_cpt\' );
}
add_action( \'expire_cpt\', \'pre_expire_the_offers\' );
});
function pre_expire_the_offers() {
//...
}
现在我们的功能程序改变了,我们想制定一个每日时间表。所以我这样安排:add_action( \'init\', function () {
//Used once to delete all the schedule
//wp_clear_scheduled_hook(\'expire_cpt\');
//I assumed, by clearing, I no-longer need this
//$timestamp = wp_next_scheduled( \'expire_cpt\' );
//wp_unschedule_event( $timestamp, \'expire_cpt\' );
if( ! wp_next_scheduled( \'expire_cpt\' ) ) {
//Need to run this at 24:00:00 everyday, not 24 hours from now
wp_schedule_event( time(\'00:00:00\'), \'daily\', \'expire_cpt\' );
}
add_action( \'expire_cpt\', \'pre_expire_the_offers\' );
});
我正在Windows机器的本地WAMP服务器上执行此操作。我的本地电脑时间echo date( \'Y-m-d H:i:s\', current_time( \'timestamp\' ) )
, is 2016-04-11 17:18:58。六个小时的时差可以是格林尼治标准时间和我的时区(+6)-这是合理的。
但问题在于下一个预定时间。
我正在使用:
- Debug Bar Cron - WordPress Plugin, 然后尝试Advanced Cron Manager - debug & control - WordPress Plugin
调试条Cron显示的当前时间是:11:52:54,而我的时间戳显示的是:17:52:52。问题是,下次发生的时间不是00:00:00,而是
ACM显示:2016-04-12 11:33:56 1460460836 24 hours
如何重新安排查询/功能on a specific time, 每天(编辑我当前的日程安排)?In 24 hours 12.04.2016 17:33:56