Pages

Jun 20, 2016

Create CRON In wordpress with custom interval


Create CRON In wordpress with custom interval


// add custom interval
function cron_add_minute( $schedules ) {
// Adds once every minute to the existing schedules.
    $schedules['everyminute'] = array(
   'interval' => 60,
   'display' => __( 'Once Every Minute' )
    );
    return $schedules;
}
add_filter( 'cron_schedules', 'cron_add_minute' );



add_action('recheck_event', 'recheck_verification');

function schedule_event() {
if ( !wp_next_scheduled( 'recheck_event' ) ) {
wp_schedule_event( current_time( 'timestamp' ), 'everyminute', 'recheck_event');
}
}
add_action('wp', 'schedule_event');

function recheck_verification() {

 //You Custom Function

}

No comments: