do_dismiss_core_update() WordPress Function
The do_dismiss_core_update() function is used to dismiss a core update notification. When called, the function will remove the update message from the WordPress admin interface. This is useful for when a user has already updated their WordPress installation and they do not want to be bothered with the update message anymore.
do_dismiss_core_update() #
Dismiss a core update.
Source
File: wp-admin/update-core.php
function do_dismiss_core_update() {
$version = isset( $_POST['version'] ) ? $_POST['version'] : false;
$locale = isset( $_POST['locale'] ) ? $_POST['locale'] : 'en_US';
$update = find_core_update( $version, $locale );
if ( ! $update ) {
return;
}
dismiss_core_update( $update );
wp_redirect( wp_nonce_url( 'update-core.php?action=upgrade-core', 'upgrade-core' ) );
exit;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 2.7.0 | Introduced. |