<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: How to disable comment on a Wordpress page or post</title>
	<atom:link href="http://www.sabahan.com/2006/03/05/how-to-disable-comment-on-a-wordpress-page-or-post/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sabahan.com/2006/03/05/how-to-disable-comment-on-a-wordpress-page-or-post/</link>
	<description>About Computers, Blogging, Making Money Online, Marketing and Interesting Stuff</description>
	<pubDate>Tue, 06 Jan 2009 19:05:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Cassie</title>
		<link>http://www.sabahan.com/2006/03/05/how-to-disable-comment-on-a-wordpress-page-or-post/comment-page-1/#comment-33420</link>
		<dc:creator>Cassie</dc:creator>
		<pubDate>Wed, 07 May 2008 00:37:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.sabahan.com/2006/03/05/how-to-disable-comment-on-a-wordpress-page-or-post/#comment-33420</guid>
		<description>I just edited page.php and replaced

  

with

 comment_status) {
comments_template();
}
?&#62;

Worked like a charm, thank you!</description>
		<content:encoded><![CDATA[<p>I just edited page.php and replaced</p>
<p>with</p>
<p> comment_status) {<br />
comments_template();<br />
}<br />
?&gt;</p>
<p>Worked like a charm, thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mael</title>
		<link>http://www.sabahan.com/2006/03/05/how-to-disable-comment-on-a-wordpress-page-or-post/comment-page-1/#comment-32833</link>
		<dc:creator>mael</dc:creator>
		<pubDate>Fri, 22 Feb 2008 04:39:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.sabahan.com/2006/03/05/how-to-disable-comment-on-a-wordpress-page-or-post/#comment-32833</guid>
		<description>Hi guys,

I've tried this and it's work.

Firstly, login to your admin site. click the Presentation tab. In the Theme Edetor tab, search for index.php file.

Look for the below paragraph

Before

&lt;strong&gt;Tags:&lt;/strong&gt; &lt;strong&gt;Tags:&lt;/strong&gt;  to disable the comment function.</description>
		<content:encoded><![CDATA[<p>Hi guys,</p>
<p>I&#8217;ve tried this and it&#8217;s work.</p>
<p>Firstly, login to your admin site. click the Presentation tab. In the Theme Edetor tab, search for index.php file.</p>
<p>Look for the below paragraph</p>
<p>Before</p>
<p><strong>Tags:</strong> <strong>Tags:</strong>  to disable the comment function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaman</title>
		<link>http://www.sabahan.com/2006/03/05/how-to-disable-comment-on-a-wordpress-page-or-post/comment-page-1/#comment-12</link>
		<dc:creator>Gaman</dc:creator>
		<pubDate>Sun, 05 Mar 2006 09:01:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.sabahan.com/2006/03/05/how-to-disable-comment-on-a-wordpress-page-or-post/#comment-12</guid>
		<description>Hi ZEO,

Yes you can do that but you will get the "No Comments" and "No comments yet" message at the bottom of your page.

If you don't mind that, by all means you can simply untick the 'Allow Comments' checkbox.

For my purpose though, I made several changes to my comment template so even if the comment is unticked, the changes will still be visible.

LcF, nice tip.</description>
		<content:encoded><![CDATA[<p>Hi ZEO,</p>
<p>Yes you can do that but you will get the &#8220;No Comments&#8221; and &#8220;No comments yet&#8221; message at the bottom of your page.</p>
<p>If you don&#8217;t mind that, by all means you can simply untick the &#8216;Allow Comments&#8217; checkbox.</p>
<p>For my purpose though, I made several changes to my comment template so even if the comment is unticked, the changes will still be visible.</p>
<p>LcF, nice tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LcF</title>
		<link>http://www.sabahan.com/2006/03/05/how-to-disable-comment-on-a-wordpress-page-or-post/comment-page-1/#comment-11</link>
		<dc:creator>LcF</dc:creator>
		<pubDate>Sun, 05 Mar 2006 08:54:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.sabahan.com/2006/03/05/how-to-disable-comment-on-a-wordpress-page-or-post/#comment-11</guid>
		<description>An easier way is to check comment is enable or not for the post/page, then show comment template if comment is enable.

Sample code:
if ('open' == $post-&#62; comment_status) {
comments_template();
}</description>
		<content:encoded><![CDATA[<p>An easier way is to check comment is enable or not for the post/page, then show comment template if comment is enable.</p>
<p>Sample code:<br />
if (&#8217;open&#8217; == $post-&gt; comment_status) {<br />
comments_template();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ZEO</title>
		<link>http://www.sabahan.com/2006/03/05/how-to-disable-comment-on-a-wordpress-page-or-post/comment-page-1/#comment-10</link>
		<dc:creator>ZEO</dc:creator>
		<pubDate>Sun, 05 Mar 2006 08:23:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.sabahan.com/2006/03/05/how-to-disable-comment-on-a-wordpress-page-or-post/#comment-10</guid>
		<description>Dude, why don't u just edit the page and untick 'Allow Comments' and 'Allow Pings' under Discussion block?</description>
		<content:encoded><![CDATA[<p>Dude, why don&#8217;t u just edit the page and untick &#8216;Allow Comments&#8217; and &#8216;Allow Pings&#8217; under Discussion block?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
