Removing comment section from page.php
-
Hi,
I want to remove the comment section from some of my pages (ie about me, contact). I am just wondering if anyone could point me in the right direction on what parts of the sode i should take out
<?php get_header();?>
<div id=”content”>
<?php if ($posts) {
foreach($posts as $post)
{
start_wp();
?>
<div class=”entry”><?php the_content(‘Continue Reading »’); ?>
<?php wp_link_pages(); ?>
<?php $sub_pages = wp_list_pages( ‘sort_column=menu_order&depth=1&title_li=&echo=0&child_of=’ . $id );?>
<?php if ($sub_pages <> “” ){?>
<p class=”info”>This page has the following sub pages.</p>- <?php echo $sub_pages; ?>
<?php }?>
<p class=”comments”>
<?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
</p>
<!–
<?php trackback_rdf(); ?>
–>
</div>
<?php comments_template(); ?>
</div>
<?php
}
} // end if (posts)
else
{
echo ‘<p>Sorry, No Posts matched your criteria.</p>’;
}
?>
<p align=”center”><?php posts_nav_link(‘ – ‘,’« Prev’,’Next »’) ?></p>
</div>
<?php get_sidebar();?>
<?php get_footer();?>cheers in advance
- The topic ‘Removing comment section from page.php’ is closed to new replies.