<?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: Disable Post Revisions</title>
	<atom:link href="http://www.abeontech.com/web-design/307/disable-wordpress-post-revisions/feed" rel="self" type="application/rss+xml" />
	<link>http://www.abeontech.com/web-design/307/disable-wordpress-post-revisions</link>
	<description>Abeon Tech is a technology blog aimed at Geeks, Webmasters and tech addicts. My articles include Security, Design, SEO, Gaming and Tech Tips!</description>
	<lastBuildDate>Sun, 10 Jan 2010 02:02:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Read This Link &#187; Disable Post Revisions</title>
		<link>http://www.abeontech.com/web-design/307/disable-wordpress-post-revisions/comment-page-1#comment-340</link>
		<dc:creator>Read This Link &#187; Disable Post Revisions</dc:creator>
		<pubDate>Sun, 10 Jan 2010 02:02:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.abeontech.com/?p=307#comment-340</guid>
		<description>[...] Disable Post Revisions [...]</description>
		<content:encoded><![CDATA[<p>[...] Disable Post Revisions [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abe</title>
		<link>http://www.abeontech.com/web-design/307/disable-wordpress-post-revisions/comment-page-1#comment-228</link>
		<dc:creator>Abe</dc:creator>
		<pubDate>Mon, 23 Feb 2009 13:53:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.abeontech.com/?p=307#comment-228</guid>
		<description>&lt;pre lang=&quot;php&quot;&gt;define(&#039;WP_POST_REVISIONS&#039;, 0);
define(&#039;AUTOSAVE_INTERVAL&#039;, 600);&lt;/pre&gt;
And
&lt;pre lang=&quot;php&quot;&gt;define(&#039;WP_POST_REVISIONS&#039;, false);&lt;/pre&gt;

Are the same, but the top version will also disable the Autosave feature too.

I found the Autosave to be more annoying than useful. I tend to edit posts many times to get the required page layout, so I did not to use it very much.</description>
		<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'WP_POST_REVISIONS'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'AUTOSAVE_INTERVAL'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">600</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>And</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'WP_POST_REVISIONS'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Are the same, but the top version will also disable the Autosave feature too.</p>
<p>I found the Autosave to be more annoying than useful. I tend to edit posts many times to get the required page layout, so I did not to use it very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: angelez</title>
		<link>http://www.abeontech.com/web-design/307/disable-wordpress-post-revisions/comment-page-1#comment-227</link>
		<dc:creator>angelez</dc:creator>
		<pubDate>Fri, 20 Feb 2009 02:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.abeontech.com/?p=307#comment-227</guid>
		<description>is this same as like 

&lt;pre lang=&quot;php&quot;&gt;define(&#039;WP_POST_REVISIONS&#039;, false);&lt;/pre&gt;

whats the difference?</description>
		<content:encoded><![CDATA[<p>is this same as like</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'WP_POST_REVISIONS'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>whats the difference?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abe</title>
		<link>http://www.abeontech.com/web-design/307/disable-wordpress-post-revisions/comment-page-1#comment-222</link>
		<dc:creator>Abe</dc:creator>
		<pubDate>Mon, 09 Feb 2009 14:06:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.abeontech.com/?p=307#comment-222</guid>
		<description>@TechForum:
It won&#039;t hurt. The main reason WordPress is slow, is due to the way it caches files.

A Wordpress plugin like &lt;a href=&quot;http://wordpress.org/extend/plugins/wp-super-cache/&quot; rel=&quot;external&quot; rel=&quot;nofollow&quot;&gt;WP Super Cache&lt;/a&gt; should help bring the PHP page generation time down a lot ;)</description>
		<content:encoded><![CDATA[<p>@TechForum:<br />
It won&#8217;t hurt. The main reason WordPress is slow, is due to the way it caches files.</p>
<p>A WordPress plugin like <a href="http://wordpress.org/extend/plugins/wp-super-cache/" rel="external">WP Super Cache</a> should help bring the PHP page generation time down a lot <img src='http://www.abeontech.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TechForum</title>
		<link>http://www.abeontech.com/web-design/307/disable-wordpress-post-revisions/comment-page-1#comment-221</link>
		<dc:creator>TechForum</dc:creator>
		<pubDate>Tue, 03 Feb 2009 11:02:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.abeontech.com/?p=307#comment-221</guid>
		<description>Should this speed up wordpress at the same time? I&#039;ve got WP running on one site and it takes almost 2 seconds to generate the page (debug says that&#039;s down to PHP, not MySQL though?)</description>
		<content:encoded><![CDATA[<p>Should this speed up wordpress at the same time? I&#8217;ve got WP running on one site and it takes almost 2 seconds to generate the page (debug says that&#8217;s down to PHP, not MySQL though?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: scriptygoddess &#187; Turn off Wordpress Post Revisions</title>
		<link>http://www.abeontech.com/web-design/307/disable-wordpress-post-revisions/comment-page-1#comment-188</link>
		<dc:creator>scriptygoddess &#187; Turn off Wordpress Post Revisions</dc:creator>
		<pubDate>Wed, 14 Jan 2009 18:53:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.abeontech.com/?p=307#comment-188</guid>
		<description>[...] I&#039;ve probably seen it at least a dozen times. Just now when I was searching for it I found it here. But because I need to have the code handy here&#039;s the [...]</description>
		<content:encoded><![CDATA[<p>[...] I&#39;ve probably seen it at least a dozen times. Just now when I was searching for it I found it here. But because I need to have the code handy here&#39;s the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SEO</title>
		<link>http://www.abeontech.com/web-design/307/disable-wordpress-post-revisions/comment-page-1#comment-142</link>
		<dc:creator>SEO</dc:creator>
		<pubDate>Sat, 27 Dec 2008 20:42:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.abeontech.com/?p=307#comment-142</guid>
		<description>Great post. Thanks for sharing!</description>
		<content:encoded><![CDATA[<p>Great post. Thanks for sharing!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
