WordPress - 无法运行调度和cron

时间:2011-07-19 17:16:44

标签: wordpress cron scheduled-tasks

我在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(...)
}

可能遗漏了一些东西,但我的功能没有运行,我不确定时间。我做错了什么?

0 个答案:

没有答案