I’m sorry for my first post, I missunderstood the term of “excerpt”.
What I’d like to do is to show full content of the posts on the homepage (blog page) when conent-with-thumbnail.php is working. I need this, because with previous version of the theme I was sucessfully using Easy Custom Auto Excerpt plugin. Plus I used smaller thumbnail image located on the left thanks to your content.php functionality.
Actually, by mistake I kind of duplicated that feature in the new 2.2 version. I’ll try to clean it up in the upcoming versions.
Now you don’t need that content-with-thumbnail.php, but instead see the Tip40 – Optional post thumbnail (Featured Image) on index views (style.css, inc/template-tags.php , template-parts/content.php) (can also be used in child themes). And you can enable in style.css.
If you need to change the image size, you can adjust it by copying function tinyframework_post_thumbnail from inc/template-tags.php to your child’s functions.php and changing the size.
Thank you for your help. I copied tinyframework_post_thumbnail function to child’s functions.php. Then changed ‘medium_large’ to ‘medium’ and added ‘class’ => ‘alignleft’ param to the array. And it works great.
One more question: There is <div class=”entry-thumbnail”> in content-with-thumbnail.php which wraps the thumbnail. When I added this div to tinyframework_post_thumbnail func nothing happend, posts look the same. Should I keep this tag in tinyframework_post_thumbnail() ?
It looks that <div class=”entry-thumbnail”> can be safely discarded.