Disable theme switching
Disable theme switching
The best way to prevent your clients from switching theme is definitely by disabling theme switching. Paste the following code into functions.php and your clients will not be able to switch themes anymore.
add_action(‘admin_init’, ‘slt_lock_theme’);
function slt_lock_theme() {
global $submenu, $userdata;
get_currentuserinfo();
if ($userdata->ID != 1) {
unset($submenu[‘themes.php’][5]);
unset($submenu[‘themes.php’][15]);
}
}