upgrade_250()
Execute changes made in WordPress 2.5.0.
No Hooks.
Returns
null. Nothing (null).
Usage
upgrade_250();
Notes
- Global. Int.
$wp_current_db_versionThe old (current) database version.
Changelog
| Since 2.5.0 | Introduced. |
upgrade_250() upgrade 250 code WP 6.9.1
function upgrade_250() {
global $wp_current_db_version;
if ( $wp_current_db_version < 6689 ) {
populate_roles_250();
}
}