upgrade_431()
Executes changes made in WordPress 4.3.1.
No Hooks.
Returns
null. Nothing (null).
Usage
upgrade_431();
Changelog
| Since 4.3.1 | Introduced. |
upgrade_431() upgrade 431 code WP 7.0
function upgrade_431() {
// Fix incorrect cron entries for term splitting.
$cron_array = _get_cron_array();
if ( isset( $cron_array['wp_batch_split_terms'] ) ) {
unset( $cron_array['wp_batch_split_terms'] );
_set_cron_array( $cron_array );
}
}