0
私はwpで新しく、wp_schedule_eventを使用する必要があります。 私はまた、カスタムを作成するには、このコードワードプレスでスケジュールされたイベントは一度だけ実行されます
add_action('my_func', 'my_func');
function myFunction() {
error_log("asd");
}
function activateSchedule($recurrence) {
if(!wp_next_scheduled('my_func')) {
// Schedule the event
wp_schedule_event(current_time('timestamp'), $recurrence, 'my_func');
}
}
にしようとしているが、このよう
function isa_add_cron_recurrence_interval($schedules) {
$schedules['5sec'] = array(
'interval' => 5,
'display' => __('Every 5 seconds', 'textdomain')
);
}
add_filter('cron_schedules', 'isa_add_cron_recurrence_interval');
を再発しかし、スケジュール機能は一度だけ実行されます。 私は行方不明ですか?