Last active
October 8, 2021 06:55
-
-
Save wtmujeebu/6023a1d56da541ae2d0be3e35211f6ad to your computer and use it in GitHub Desktop.
Modify cron check interval - import export suite by WebToffee
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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