Skip to content

Instantly share code, notes, and snippets.

@joychetry
Created October 1, 2021 06:31
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 joychetry/2da378baa7df283cd7dc4c86600437cd to your computer and use it in GitHub Desktop.
Save joychetry/2da378baa7df283cd7dc4c86600437cd to your computer and use it in GitHub Desktop.
Remove Plugin Update Notifications
// Remove plugin update notifications
function remove_update_notifications( $value ) {
if ( isset( $value ) && is_object( $value ) ) {
unset( $value->response[ 'plugin-folder/plugin.php' ] );
}
return $value;
}
add_filter( 'no_update_notifications', 'remove_update_notifications' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment