我在WP和cron工作中遇到了调度问题。我需要设置一个10min的事件来调用我班级中的一个函数。基本上到目前为止,我在课堂上有一个功能:
private function configureExporter() {
$this->cronActivation();
add_action('cron_exporter', array(&$this, 'cronExporter'));
}
private function cronActivation() {
if ( !wp_next_scheduled( 'cron_exporter' ) ) {
wp_schedule_event(time(), 'hourly', 'cron_exporter');
}
}
public function cronExporter() {
// demo, file export, update_option(...)
}
可能遗漏了一些东西,但我的功能没有运行,我不确定时间。我做错了什么?