How to hide plugin from WordPress Multisite admin plugin list
There’s a filter called all_plugins that seems to do the trick for me: add_filter( ‘all_plugins’, ‘wpse156903_hide_plugins’ ); function wpse156903_hide_plugins( (array) $plugins ) { // let’s hide akismet if( in_array( ‘akismet/akismet.php’, array_keys( $plugins ) ) ) { unset( $plugins[‘akismet/akismet.php’] ); } // hide multiple plugins $hidearr = array( ‘plugin1/plugin-file.php’, ‘plugin2/plugin-file2.php’, // and so on ); foreach( … Read more