Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ataylorme/4101200 to your computer and use it in GitHub Desktop.
Save ataylorme/4101200 to your computer and use it in GitHub Desktop.
Remove twentyeleven theme options from child theme
//Remove the custom options provided by the default twentyeleven theme.
add_action( 'after_setup_theme','remove_twentyeleven_options', 100 );
function remove_twentyeleven_options() {
remove_custom_background();
remove_custom_image_header();
remove_action('admin_menu', 'twentyeleven_theme_options_add_page');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment