方法来执行,在一定的时间间隔
function informant_main_action(){
die('working');
}
自定义计划的计划作业
function my_cron_definer($schedules){
$schedules['weekly'] = array('interval'=> 120, //604800
'display'=> __('Once Every week')
);
return $schedules;
}
add_filter('cron_schedules','my_cron_definer');
在插件激活注册时间表
register_activation_hook( __FILE__, 'informant_run_on_activation' );
function informant_run_on_activation(){
if(!wp_next_scheduled('informantweeklynewsletter')){
wp_schedule_event(time(), 'weekly', 'informantweeklynewsletter');
}
}
调用我的方法要在自定义事件执行
add_action('informantweeklynewsletter','informant_main_action');
我已经安装了一个插件的Cron桂观看预定的cronjob,它是我的上市活动作为正确我把复发每隔两分钟的cron GUI显示正确的结果,即它的更新时间2分钟。
但我的方法informant_main_action()
不工作。 请告诉我的错误,我想提出。 ?
谢谢