【发布时间】:2014-07-21 22:57:57
【问题描述】:
我每天早上 00:01 设置 wp_schedule_event。我的代码在这里:
<?php
add_action( 'wp', 'cron_hookup' );
/**
* On an early action hook, check if the hook is scheduled - if not, schedule it.
*/
function cron_hookup() {
if ( ! wp_next_scheduled( 'cron_funct' ) ) {
wp_schedule_event( time(), 'hourly', 'cron_funct');
}
}
add_action( 'cron_funct', 'cron_order' );
?>
【问题讨论】: