upgrade_460()
Executes changes made in WordPress 4.6.0.
No Hooks.
Returns
null. Nothing (null).
Usage
upgrade_460();
Notes
- Global. Int.
$wp_current_db_versionThe old (current) database version.
Changelog
| Since 4.6.0 | Introduced. |
upgrade_460() upgrade 460 code WP 7.0
function upgrade_460() {
global $wp_current_db_version;
// Remove unused post meta.
if ( $wp_current_db_version < 37854 ) {
delete_post_meta_by_key( '_post_restored_from' );
}
// Remove plugins with callback as an array object/method as the uninstall hook, see #13786.
if ( $wp_current_db_version < 37965 ) {
$uninstall_plugins = get_option( 'uninstall_plugins', array() );
if ( ! empty( $uninstall_plugins ) ) {
foreach ( $uninstall_plugins as $basename => $callback ) {
if ( is_array( $callback ) && is_object( $callback[0] ) ) {
unset( $uninstall_plugins[ $basename ] );
}
}
update_option( 'uninstall_plugins', $uninstall_plugins );
}
}
}