function wp_cron_define(){
add_filter(\'cron_schedules\', function($schedules){
$schedules[\'mine\'] = array(
\'interval\' => 30,
\'display\' => \'once in a week\'
); //for defining the schedule timing
if(!wp_next_scheduled(\'sen_hook\')) {
wp_schedule_event( time(),\'mine\',\'sen_hook\');
}
}
add_action(\'sen_hook\',\'hello\');
function hello(){
echo \'hello\';
}
add_action(\'wp\',\'wp_cron_define\');
现在,每当用户访问页面时,他们都会看到hello,但我没有看到任何东西,因此dev的一点帮助将是非常好的。
提前谢谢。