remove_theme_support Twenty Eleven
-
I am trying to disable multiple post formats added to Twenty Eleven in my child theme.
‘add_action (‘after_setup_theme’, ‘remove_post_formats’);
function remove_post_formats() {remove_theme_support(‘post-formats’);
}’I am doing everything I can to avoid editing the template theme (Twenty Eleven) or having to literally copy and paste the whole twentyeleven_setup to my child theme and deleting the necessary lines. As this would render future template theme updates obsolete or would break my child theme.
I have tried numerous variations of the remove_theme_support function to no avail, any help would be appreciated.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘remove_theme_support Twenty Eleven’ is closed to new replies.