_wp_check_for_scheduled_split_terms() WP 4.3.0
In order to avoid the _wp_batch_split_terms() job being accidentally removed, check that it's still scheduled while we haven't finished splitting terms.
No Hooks.
Return
Null. Nothing.
Usage
_wp_check_for_scheduled_split_terms();
Changelog
Since 4.3.0 | Introduced. |
Code of _wp_check_for_scheduled_split_terms() wp check for scheduled split terms WP 5.6
function _wp_check_for_scheduled_split_terms() {
if ( ! get_option( 'finished_splitting_shared_terms' ) && ! wp_next_scheduled( 'wp_split_shared_term_batch' ) ) {
wp_schedule_single_event( time() + MINUTE_IN_SECONDS, 'wp_split_shared_term_batch' );
}
}