remove_theme_support post-thumbnails
-
Hi all! Hi have the next problem using the twentytwelve theme.
I need to remove thumbnails from my posts for this I have created a twentytwelve-child theme and I have created functions.php file. Like I read here I use the next code to remove ‘post-thumbnails’ but it seams that is not working. I have checked what is returning remove_theme_support and it’s FALSE.
add_action( 'after_setup_theme', 'remove_featured_images_from_child_theme' ); function remove_featured_images_from_child_theme() { // This will remove support for post thumbnails on ALL Post Types $removed = remove_theme_support( 'post-thumbnails' ); echo "lksdjflk".$removed; // Add this line in to re-enable support for just Posts //add_theme_support( 'post-thumbnails', array( 'post' ) ); }
Thanks in advance and sorry for my horrible English.
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘remove_theme_support post-thumbnails’ is closed to new replies.