Tagged Questions
4
votes
1answer
187 views
When does next Cron Job run (time from now)?
I would need to know how much time is left between now and the next time a specifc Cron Job is done.
For another answer I built a basic cron inspector plugin which can be found here.
Reason I'm ...
3
votes
1answer
98 views
Trigger a cron every 24h GMT -8
I' like to run a cron every 24 hours at midnight PST ( = GMT -8 )
This is what I have
if ( !wp_next_scheduled( 'cron_hook' ) ) {
//reset on 00:00 PST ( GMT -8 ) == GMT +16
$timeoffset = ...