WordPress add cron job programmatically

For wordpress to setup cron job that is easy to setup in function.php by that you can use wordpress cron job.
lets start with example:
we make cron job in wordpress which is every 5 minutes after call and perform action .

this code you need to put in function.php


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.

<?php
// See http://codex.wordpress.org/Plugin_API/Filter_Reference/cron_schedules
add_filter( 'cron_schedules', 'isa_add_every_five_minutes' );
function isa_add_every_five_minutes( $schedules ) {
$schedules['every_five_minutes'] = array(
'interval' => 60 * 5,
'display' => __( 'Every 5 Minutes', 'textdomain' )
);
return $schedules;
}
// Schedule an action if it's not already scheduled
if ( ! wp_next_scheduled( 'isa_add_every_five_minutes' ) ) {
wp_schedule_event( time(), 'every_five_minutes', 'isa_add_every_five_minutes' );
}
// Hook into that action that'll fire every five minutes
add_action( 'isa_add_every_five_minutes', 'every_five_minutes_event_func' );
function every_five_minutes_event_func() {
// do something here you can perform anything
}