Twenty Fourteen, the new default WordPress theme displays featured images (post thumbnails) both on single and multi-post pages.
We have recently finded out an easy way of removing featured images only from single post pages and today a user of SANGKRIT.net asked us how he can simply hide featured images on individual post screens.
First thing you need to do is create a Twenty Fourteen child theme, or alternatively you may go for a custom CSS inserter plugin like My Custom CSS or Simple Custom CSS.
Now add the following CSS:
.single .post-thumbnail img {
display: none;
}
Like this:
Save your changes and that’s it.