Skip to content

Instantly share code, notes, and snippets.

@broskees
Created May 18, 2023 17:32
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 broskees/d559bd120d176e423576bbeba0ee6cc1 to your computer and use it in GitHub Desktop.
Save broskees/d559bd120d176e423576bbeba0ee6cc1 to your computer and use it in GitHub Desktop.
Hide Must Use Plugins WordPress
<?php
add_filter( 'show_advanced_plugins', function ($default, $type) {
return $type == 'mustuse' ? false : $default;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment