function plugin_hide() {
global $wp_list_table;
$hidearr =
array('Prijs-Rechts-Uitlijnen/prijs-rechts-uitlijnen.php'); //
replace your plugin url here
$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', 'plugin_hide');
Code language: PHP (php)Plugins verbergen, hide
Last updated:
Categories: Uncategorized