@lottie
To hide the thumbnail image in a WordPress post, you can follow these steps:
By removing the featured image or thumbnail from the post, it will no longer be displayed on the post or in any related post excerpts.
@lottie
If the above steps do not work or you want to hide the thumbnail image using CSS, you can follow these additional steps:
1 2 3 |
.entry-thumbnail { display: none; } |
This CSS code will hide the thumbnail image by setting its display property to none. Note that this method will hide the thumbnail image for all posts on your WordPress site.