KOKINIO - MANAGER
Edit File: gestion-mu-plugins.php
<?php /** * Plugin Name: Gestion de Mu-Plugins * Plugin URI: https://triunfaweb.com * Description: Sistema de Gestion de Plugins "Mu-Plugin" * Version: 1.0 * Author: TriunfaWeb * Author URI: https://triunfaweb.com * License: GPL+2 */ // Ocultar area de Muplugins en WordPress add_filter( 'show_advanced_plugins', 'f711_hide_advanced_plugins', 10, 2 ); function f711_hide_advanced_plugins( $default, $type ) { if ( $type == 'mustuse' ) return false; // Hide Must-Use return $default; } ?>