Guest User

Untitled

a guest
Oct 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. if ( ! wp_next_scheduled( 'midnight_cron' ) ) {
  2. $now = current_time('timestamp', 1 );
  3. $time = strtotime('tomorrow', $now );
  4.  
  5. wp_schedule_event($time, 'daily', 'midnight_cron');
  6. }
Add Comment
Please, Sign In to add comment