Return to Snippet

Revision: 48593
at July 5, 2011 23:53 by athanassiadis


Initial Code
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] );
    }
}

Initial URL


Initial Description


Initial Title
Disable theme-change in Wordpress

Initial Tags
textmate, wordpress, theme

Initial Language
Other