Thank you so much for responding! I’m really new to all this so I appreciate your patience.
So this is what I have under content.php
<?php
/**
* @package Seller
*/
?>
<article id=”post-<?php the_ID(); ?>” <?php post_class(‘row’); ?>>
<?php if (has_post_thumbnail()) : ?>
<div class=”featured-thumb col-md-4″>
<?php the_post_thumbnail(); ?>
</div><!–.featured-thumb–>
<div class=”after-thumb col-md-8″>
<?php else: ?>
<div class=”after-thumb col-md-12″>
<?php endif; ?>
<header class=”entry-header”>
<h1 class=”entry-title”>” rel=”bookmark”><?php the_title(); ?></h1>
</header><!– .entry-header –>
<div class=”entry-content”>
<?php the_excerpt(); ?>
<?php
wp_link_pages( array(
‘before’ => ‘<div class=”page-links”>’ . __( ‘Pages:’, ‘seller’ ),
‘after’ => ‘</div>’,
) );
?>
</div><!– .entry-content –>
</div><!–.after-thumb–>
</article><!– #post-## –>
What should I remove?