It has been a week ago since I’ve transformed my site into a WordPress Blog site. Because I want to customize everything, I searched the whole site of mine to look for candidates for customization. Now I’ve noticed that wordpress pages don’t have comments, like the about page.
I tried to enable it on Comments and Pings and checked Allow Comments, but it still doesn’t work. Now I’ve searched the internet (the term Google Kung Fu by AJ Batac from phpuhph) and found these topics:
By the way here is the Google Kung Fu: http://www.google.com.ph/search?hl=en&rlz=1G1GGLQ_TLPH303&q=wordpress+enable+page+comments&btnG=Search&meta=
And the topics found:
- http://www.devang-gandhi.net/blog/how-to-enable-comments-on-wordpress-pages/
- http://wordpress.org/support/topic/119538
Here is the content of the topic:
//All you need to do is edit the “Page Template” and insert the following code <?php if ((‘open’ == $post-> comment_status)) { comments_template(); } ?> //somewhere in between the following two lines. <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php endwhile; endif; ?>
Just go to your theme editor, click Page Template: page.php and then do the code above.