Skip to content

Instantly share code, notes, and snippets.

@wtmujeebu
Last active October 8, 2021 06:55
Show Gist options
  • Save wtmujeebu/6023a1d56da541ae2d0be3e35211f6ad to your computer and use it in GitHub Desktop.
Save wtmujeebu/6023a1d56da541ae2d0be3e35211f6ad to your computer and use it in GitHub Desktop.
Modify cron check interval - import export suite by WebToffee
<?php
add_filter('wt_iew_cron_interval_details', 'wt_iew_cron_interval_details_fn');
function wt_iew_cron_interval_details_fn($schedules) {
$schedules['wt_iew_cron_interval'] = array(
'interval' => (60), //60 second
'display' => __('Every minute'),
);
return $schedules;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment