upgrade_260()
Execute changes made in WordPress 2.6.
No Hooks.
Returns
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() upgrade 260 code WP 6.9
function upgrade_260() {
global $wp_current_db_version;
if ( $wp_current_db_version < 8000 ) {
populate_roles_260();
}
}