upgrade_260()WP 2.6.0

Execute changes made in WordPress 2.6.

No Hooks.

Return

null. Nothing (null).

Usage

upgrade_260();

Notes

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

Changelog

Since 2.6.0 Introduced.

upgrade_260() code WP 6.5.2

function upgrade_260() {
	global $wp_current_db_version;

	if ( $wp_current_db_version < 8000 ) {
		populate_roles_260();
	}
}