Remove Featured Image From Single Post
-
Is there any way anyone would be able to help me remove a featured image from the single post page? I want it in the front, but when I click on the post, the image is doubled :/
See here: https://www.mysoulcalledlife.com/2015/01/19/sparrows-book-review-martian-andy-weir/
Here is the code that is presently under the single.php section of the Edit CSS remote window:
<?php
/**
* The Template for displaying all single posts.
*
* @package Seller
*/get_header(); ?>
<div class=”header-title col-md-12″>
<SPAN><?php the_title(); ?></SPAN>
</div>
<div id=”primary-mono” class=”content-area col-md-8″>
<main id=”main” class=”site-main” role=”main”><?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘content’, ‘single’ ); ?>
<?php // seller_post_nav(); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || ‘0’ != get_comments_number() ) :
comments_template();
endif;
?><?php endwhile; // end of the loop. ?>
</main><!– #main –>
</div><!– #primary –><?php get_sidebar(); ?>
<?php get_footer(); ?>What do I need to edit or remove?
- The topic ‘Remove Featured Image From Single Post’ is closed to new replies.