Wordpress
How to enable commenting on static pages
You may have noticed that you can leave comments on all of my static pages in Wordpress. This feature isn’t included by default but can be easily added due to Pramodds advice on this thread. He says to do the following:
Locate following two lines of code in page.php (this is a template file within the active theme directory):
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
and
<?php endwhile; endif; ?>
And immediately before the second line add the following:
<?php comments_template(); ?>