Is there a way to remove the featured image thumbnails in the teasers when using a grid style front page? Here’s a link to my site layout: http://sqex.info/demo/
I’d really like if the teasers just had the post title and excerpt, thanks!
In the files content-*.php find this line:
<?php if( has_post_thumbnail() ) : ?>
replace it with:
<?php if( has_post_thumbnail() && ! esplanade_is_teaser() ) : ?<
Thanks, worked like a charm!