perperas
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fresh & Clean: remove featured image from postGot it!!!! Thank you thank you thank you!!!!! I did not realize there was 2 single post sections, i was using the wrong one. Thanks again!!!!
You do not know how to remove “related Post below” so my other posts do not appear at the bottom do you?
Forum: Fixing WordPress
In reply to: Fresh & Clean: remove featured image from postI appreciate all your help on this, but I removed the code and still appears
Forum: Fixing WordPress
In reply to: Fresh & Clean: remove featured image from postThank you very much! I tried removing it but with no luck. Can you tell me what to remove?
<?php get_header(); ?>
<div id=”main”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post single”>
<h1 id=”single-title”><?php the_title(); ?></h1>
<div id=”byline”>
Posted by <?php the_author() ?> On <?php the_time(‘F jS, Y’) ?> / <?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?>
</div><!– /Post Byline –>
<div class=”postcontent”>
<?php if ($xs_disable_thumbnails_posts == “true”) { ?>
<?php } else { ?>
<?php if ( has_post_thumbnail() ) { ?>
<div class=”thumbnail-wrap”>
<?php the_post_thumbnail(‘singe-post-image’); ?>
</div><!– END thumbnail-wrap –>
<?php } } ?>
<?php the_content(); ?>
<p id=”post-admin”><?php edit_post_link( $link, $before, $after, $id ); ?></p>
</div><!– /Postcontet –>
<?php get_template_part( ‘post’,’relatedposts’) ?>
</div><!– /Post –>
<div class=”clear”></div>
<?php comments_template(); ?>
<?php endwhile; ?>
<?php endif; ?>
</div><!– End Main –>
<?php get_sidebar(); ?>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Fresh & Clean: remove featured image from postThanks but not really what I was looking for. I know how to enable and disable the feature image. I want the feature image to be on my main page, just not in the post as well.