miniCal Cron Setup
Understanding of miniCal Cron Scheduling
Why Use Cron
How to Use Cron
// daily cron
add_action('daily-cron', 'your_callback_function', 10, 1);
function your_callback_function($data) {
// this code will be executed on 0th hour every day
}
// hourly
add_action('hourly-cron', 'your_callback_function', 10, 1);
function your_callback_function($data) {
// this code will be executed on 0th to 23rd hour every day
}Last updated