Skip to content

Instantly share code, notes, and snippets.

@brichards
Created January 8, 2013 22:21
Show Gist options
  • Save brichards/4488543 to your computer and use it in GitHub Desktop.
Save brichards/4488543 to your computer and use it in GitHub Desktop.
Remove SB Options Menu
add_action( 'admin_init', 'remove_sb_options_menu', 20 );
function remove_sb_options_menu() {
remove_submenu_page( 'themes.php', 'sb_admin' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment