I am creating a child theme using twentyten as my base. I am looking for a way to remove the features of adding custom header and background without touching functions.php file in the parent theme.
no luck with this :(
function my_child_theme_setup() {
remove_theme_support('custom-background');
remove_theme_support('custom-header');
}
add_action( 'after_setup_theme', 'my_child_theme_setup' );