Skip to content

Instantly share code, notes, and snippets.

@ddbs
Last active August 29, 2015 13:56
Show Gist options
  • Save ddbs/9236097 to your computer and use it in GitHub Desktop.
Save ddbs/9236097 to your computer and use it in GitHub Desktop.
wordpress functions.php: remove core and plugin update messages
// remove plugin update messages
remove_action( 'load-update-core.php', 'wp_update_plugins' );
add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment