0

我每小时使用以下功能在 Wordpress 中激活/停用和运行 cronjob。

我已经检查了 Wordpress 代码并访问了教程网站,但没有看到在特定时间运行 wp-cron 的示例,例如“每天上午 23.59”。这可能吗?

register_activation_hook(__FILE__, 'cron_activation');

add_action('twitter_cron', 'cron_function');

register_deactivation_hook(__FILE__, 'cron_deactivation'); 

function cron_activation() {
wp_schedule_event(time(), 'hourly', 'twitter_cron');
}

function my_deactivation() {
    wp_clear_scheduled_hook('twitter_cron');
}

function do_this_hourly() {

// my twitter function

if (!wp_next_scheduled('twitter_cron')) {
wp_schedule_event( time(), 'hourly', 'twitter_cron' );
}
4

2 回答 2

1

我找到了解决方案:

wp_schedule_event('1339631940', 'daily', 'my_wp_cron' );  

其中“1339631940”是 2012 年 6 月 13 日星期三 23:59:00 +0000 的 linux 时间戳。

于 2012-06-13T14:03:17.883 回答
0

在 wp_schedule_event($timestamp, $recurrence, $hook, $args); 第一个参数是当前时间。WP 找到 DB 中的最后一个事件(WP_OPTIONS 行 CRON),查看间隔,如果 $timestamp 在之后,执行 cron。

要在特定时间运行 cron:将 $recurrence 设置得更少(每天 18 小时)并在特定时间之前停止 cron 并进行测试

$hcron = 3; // 03:00 AM
$t = time();
$on = mktime($hcron,0,0,date("m",$t+(6-$hcron)*3600),date("d",$t+(6-$hcron)*3600),date("Y",$t+(6-$hcron)*3600));
if ($t>=$on) { add_action('cron'...)}
于 2014-04-06T09:36:03.317 回答