upgrade_250()
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() upgrade 250 code WP 6.8
function upgrade_250() { global $wp_current_db_version; if ( $wp_current_db_version < 6689 ) { populate_roles_250(); } }