Skip to content

Instantly share code, notes, and snippets.

@Tmeister
Created December 2, 2014 20:17
Show Gist options
  • Save Tmeister/932cb1f1d528839cd4fd to your computer and use it in GitHub Desktop.
Save Tmeister/932cb1f1d528839cd4fd to your computer and use it in GitHub Desktop.
Activation Cron Job
<?php
register_activation_hook( __FILE__, 'my_cron_activation' );
function my_cron_activation() {
wp_schedule_event( time(), 'hourly', 'my_cron_action' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment