how to hide featured image in wordpress page code example
Example 1: wordpress featured image show
<?php echo the_post_thumbnail(); ?>
Example 2: hide featured image in wordpress
.entry-thumbnail {
display: none;
}
<?php echo the_post_thumbnail(); ?>
.entry-thumbnail {
display: none;
}