You appear to be a bot. Output may be restricted
Description
Schedule "oik_batchmove_hook" to run daily at midnightNote: The $force logic is for testing only
Usage
oik_batchmove_schedule_event( $force );
Parameters
- $force
- ( bool ) optional – whether or not to force it to run in the next hour
Returns
voidSource
File name: oik-batchmove/admin/oik-batchmove-cron.phpLines:
1 to 12 of 12
function oik_batchmove_schedule_event( $force=false ) { if ( $force ) { $start_time = strtotime( "now +1 minute" ); $recurrence = "hourly"; } else { $start_time = strtotime('today midnight'); $recurrence = 'daily'; } wp_schedule_event( $start_time, $recurrence, 'oik_batchmove_hook' ); bw_trace2( "scheduled $recurrence", $start_time ); return( $start_time ); }View on GitHub View on Trac