Skip to content

Instantly share code, notes, and snippets.

@Tmeister
Created December 2, 2014 20:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tmeister/0a7c87ba943d4b2eebdd to your computer and use it in GitHub Desktop.
Save Tmeister/0a7c87ba943d4b2eebdd to your computer and use it in GitHub Desktop.
<?php
add_filter( 'cron_schedules', 'add_custom_cron_schedule' );
function add_custom_cron_schedule( $schedules ){
$schedules['minute'] = array(
'interval' => 60 * 1,
'display' => __('Every Minute')
);
return $schedules;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment