WordPress – Impedire il cambio di tema

Aprire blog/wp-content/themes/mytheme/functions.php

Aggiungere le righe:

function remove_theme_menus() {
    global $submenu;  
    unset($submenu['themes.php'][5]);
    unset($submenu['themes.php'][15]);
}
add_action('admin_init', 'remove_theme_menus');