Skip to content

Instantly share code, notes, and snippets.

@FerFuego
Created September 1, 2020 01:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FerFuego/62ca93e88dceabcad0ea6fae68f841a8 to your computer and use it in GitHub Desktop.
Save FerFuego/62ca93e88dceabcad0ea6fae68f841a8 to your computer and use it in GitHub Desktop.
Ocultar todos los avisos de actualizaciones
<?php
/*
* Hide all updates
*/
function remove_core_updates(){
global $wp_version;
return(object) array(
'last_checked'=> time(),
'version_checked'=> $wp_version
);
}
add_filter('pre_site_transient_update_core','remove_core_updates');
add_filter('pre_site_transient_update_plugins','remove_core_updates');
add_filter('pre_site_transient_update_themes','remove_core_updates');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment