Close

Cron to delete cache in Siteground

11 / 100


// execute the function "sg_cachepress_purge_everything" when the action "MyPlugin__cron_clean_cache" is launched
add_action("MyPlugin__cron_clean_cache", "sg_cachepress_purge_everything");

add_action(«wp_loaded», function () {

// launch the action «MyPlugin__cron_clean_cache» every 30 minutes
if (!wp_next_scheduled(«MyPlugin__cron_clean_cache»)) {
wp_schedule_event(1, «30_minutes», «MyPlugin__cron_clean_cache»);
}

});

add_filter(«cron_schedules», function ($cron_schedules) {

$cron_schedules[«30_minutes»] = [
«display» => «30 minutes»,
«interval» => 30 * MINUTE_IN_SECONDS,
];

return $cron_schedules;

});