Skip to main content

Remove updates notifications

Home Forums WordPress Admin Customization Remove updates notifications

Viewing 0 reply threads
  • Author
    Posts
    • #2409

      Layer7web
      Keymaster
      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');
      function remove_core_updates(){
          global $wp_version;return(object) array('last_checked'=> time(),'version_checked'=> $wp_version,);
      }
      
Viewing 0 reply threads

You must be logged in to reply to this topic.