upgrade_250()WP 2.5.0

Execute changes made in WordPress 2.5.0.

No Hooks.

Return

null. Nothing (null).

Usage

upgrade_250();

Notes

  • Global. Int. $wp_current_db_version The old (current) database version.

Changelog

Since 2.5.0 Introduced.

upgrade_250() code WP 6.5.2

function upgrade_250() {
	global $wp_current_db_version;

	if ( $wp_current_db_version < 6689 ) {
		populate_roles_250();
	}
}