php - im trying to remove the double post image -
when go to:
you see posts have 2 images. im trying remove 1 on bottom.
i initally added
<?php the_post_thumbnail( $size, $attr ); ?>
for main post image, wasn't getting placement wanted, above post statistics. have above statistics, still have original image, , want remove it.
im trying play class .wp-image
,
but isn't giving me sort of luck. want remove 2nd duplicate image underneath statistics, , keep whatever other images may wish write post body in future. how do this?
edit: here php code:
<?php get_header(); ?> <div id="main"> <div id="content"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <!-- item --> <div class="item entry" id="post-<?php the_id(); ?>"> <div class="itemhead"> <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php the_post_thumbnail( $size, $attr ); ?> <div class="poststatscontainer"> <div class="postviews">100 views</div><div class="slash"></div> <div class="postshares">100 shares</div><div class="slash"></div> <div class="postcomments">100 comments</div><div class="slash"></div> <div class="date"><?php the_time('m js, y') ?> </div> </div><div style="clear: both"></div> <!--<div class="readmore_container">--> <?php the_content('read more »'); ?> <div class="postcounter"><i class="fa fa-pencil-square-o fa-2x"></i>#200</div> <div class="metadata" style="clear:both;"> <div class="tagicon"></div>filed under <span class="category"><?php the_category(', ') ?> </span> | <?php edit_post_link('edit', '', ' | '); ?> <?php comments_popup_link('comment (0)', ' comment (1)', 'comments (%)'); ?></div> <div style="clear:both;"></div> <div style="clear:both;"></div> </div></div> <!-- end item --> <?php comments_template(); // wp-comments.php template ?> <?php endwhile; ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« previous entries') ?></div> <div class="alignright"><?php previous_posts_link('next entries »') ?></div> <p> </p> </div> <?php else : ?> <h2 class="center">not found</h2> <p class="center">sorry, looking isn't here.</p> <?php endif; ?> <!-- end content --> </div> <div id="primary"> <?php include(templatepath."/l_sidebar.php");?> </div> <div id="secondary"> <?php include(templatepath."/r_sidebar.php");?> </div> <?php get_footer(); ?>
Comments
Post a Comment