Welcome! To use this support forum, please Login or Join Today!
You are here → Home :: Forum Home :: WordPress Themes Support :: Breeze WordPress Theme :: Thread
Change display of featured image.
I’m using the most current version of the breeze theme. Right now the default setting for a feature image in a post is a full-screen image at the top of the post. I would like to change that to either be a thumbnail, or not appear at all. Is that possible?
The easiest way to override this would be to add the following to your child theme’s functions.php:
function skeleton_thumbnailer($content) {
return $content;
}
add_filter('the_content','skeleton_thumbnailer');