Add bellow code into functions.php file function hideplugin() { global $wp_list_table; $hidearr = array('plugin-folder/plugin.php'); $myplugins = $wp_list_table->items; foreach ($myplugins as $key => $val) { if (in_array($key,$hidearr)) { unset($wp_list_table->items[$key]); } } } add_action( 'pre_current_active_plugins', 'hideplugin' );
0 comments:
Post a Comment