I will update Premium Account on this website Shareaccounts.org
Name Update Time
Netflix October 18, 2024 4:49 pm
Disney+ October 18, 2024 11:03 am
Max October 18, 2024 11:34 am
ChatGPT 4 October 18, 2024 2:27 pm
Spotify October 18, 2024 11:49 am
Prime Video October 18, 2024 5:17 pm
Codecademy October 18, 2024 5:08 pm
Grammarly October 16, 2024 2:31 pm
Canva Pro October 18, 2024 5:12 pm
Udemy Premium Cookies September 2, 2024 2:53 pm
I will update Premium Account on this website Shareaccounts.org

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.