Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Last active June 18, 2018 08:57
Show Gist options
  • Save anthonybudd/0d10ad27cb72926f6c9b4c2608cd704d to your computer and use it in GitHub Desktop.
Save anthonybudd/0d10ad27cb72926f6c9b4c2608cd704d to your computer and use it in GitHub Desktop.
<?php
Class ExampleCronEvent extends WP_Cron{
public $every = [
'seconds' => 30,
'minutes' => 15,
'hours' => 1,
];
public function handle(){
update_option('last_ran', current_time('mysql'));
}
}
ExampleCronEvent::register();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment