Hide Plugin From WordPress Dashboard

In this tutorial, I’ll show how you can easily hide a WordPress plugin from the plugin list. The plugin will still work, but will not appear in the plugin list

Updated: 14 Dec, 21 by linda Y 1 Min

Do you want to have one or multiple of your WordPress plugins hidden yet still running and fully functional? It is entirely possible and quite easy to do, simply follow these steps:

Login to your WordPress dashboard

Under Appearance click on Editor

Click on Function.php and add the following snippet to your current theme’s functions.php file

add_filter( 'all_plugins', 'hide_plugins');

function hide_plugins($plugins)

{
 if(is_plugin_active(' plugin-directory/plugin-file.php')) {

 unset( $plugins['plugin-directory/plugin-file.php'] );

}
 return $plugins;

}

To know the plugin-directory, click on the Editor from the plugins menu. Then select the plugin from the drop-down menu where the name of the plugins is displayed, and click on the select. Now you will see the URL of the plugin at the top of the page, which you can copy from here and replace the code in the above steps.

We hope this article helped you hide plugins from the WordPress admin area and create your own customized admin panels.

linda Y

linda Y

My name is Linda, I have Master degree in Information Technology Engineering. I have some experiences in working with Windows and Linux VPS and I have been working for 2 years on Virtualization and Hosting.