upgrade_600()
Executes changes made in WordPress 6.0.0.
No Hooks.
Returns
null. Nothing (null).
Usage
upgrade_600();
Notes
- Global. Int. $wp_current_db_version The old (current) database version.
Changelog
| Since 6.0.0 | Introduced. |
upgrade_600() upgrade 600 code WP 6.9
function upgrade_600() {
global $wp_current_db_version;
if ( $wp_current_db_version < 53011 ) {
wp_update_user_counts();
}
}