How do I stop the featured image showing in post as well
-
Hi i am having trouble getting the featured image to only show on the front page right next to the title of post. I want it to only show there, right now its showing there and in the post. Here is my code to my single.php if that helps`<?php $options = get_option(‘mh_options’); ?>
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”wrapper clearfix”>
<div class=”content <?php mh_content_class(); ?>”><?php
mh_before_post_content();
get_template_part(‘content’, get_post_format());
mh_after_post_content();
endwhile;
comments_template();
endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>’site is https://www.koitesocial.com
- The topic ‘How do I stop the featured image showing in post as well’ is closed to new replies.