- How to remove Wordpress theme options from child theme
- add_action( 'init', 'remove_crap' );
- function remove_crap() {
- remove_custom_image_header();
- remove_custom_background();
- remove_theme_support('post-formats');
- }
- add_action('admin_init', 'remove_twentyeleven_theme_options', 11);
- function remove_twentyeleven_theme_options() {
- remove_submenu_page('themes.php', 'theme_options');
- }