Advertisement
thesufi

Turn off all wp update notifications

Jan 16th, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. function dct_remove_core_updates(){
  2.     global $wp_version;
  3.     return(object) array('last_checked'=> time(),'version_checked'=> $wp_version,);
  4. }
  5. add_filter('pre_site_transient_update_core','dct_remove_core_updates');
  6. add_filter('pre_site_transient_update_plugins','dct_remove_core_updates');
  7. add_filter('pre_site_transient_update_themes','dct_remove_core_updates');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement