upgrade_600()WP 6.0.0

Executes changes made in WordPress 6.0.0.

No Hooks.

Return

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() code WP 6.5.2

function upgrade_600() {
	global $wp_current_db_version;

	if ( $wp_current_db_version < 53011 ) {
		wp_update_user_counts();
	}
}