• When I call wp_next_scheduled() instead of getting the timestamp plus the recurrance interval, the function appears to just return the timestamp. The timestamp is the value set by the wp_schedule_event() method and is the UNIX timestamp of when the event was scheduled. Since wp_next_scheduled() is supposed to: “Returns the next timestamp for a cron event.” shouldn’t return the timestamp + recurrence interval value?

Viewing 1 replies (of 1 total)
  • When you schedule the event, an immediate call to wp_next_scheduled() will return the original scheduling time (or perhaps even earlier if the event already existed).

    Calls to wp_next_scheduled() after the event first fires should always be future times. The only exception to that rule would be cron events that fire late due to an extremely overloaded server or possibly ( I suspect ) a custom scheduled time that is too short for use on an infrequently visited site.

Viewing 1 replies (of 1 total)
  • The topic ‘wp_next_scheduled() returns timestamp, not scheduled time’ is closed to new replies.