<?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: Saving Post Meta Field Revisions in WordPress</title>
	<atom:link href="/post-meta-revisions-wordpress/feed" rel="self" type="application/rss+xml" />
	<link>https://lud.icro.us/post-meta-revisions-wordpress</link>
	<description></description>
	<lastBuildDate>Wed, 06 Feb 2013 13:31:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6-beta1-23983</generator>
	<item>
		<title>By: Josh</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress#comment-6478</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Fri, 28 Sep 2012 22:03:59 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=294#comment-6478</guid>
		<description><![CDATA[Thanks. I got it working easily enough by bringing in the global $post object to that function. 

I owe you a beer (or six).]]></description>
		<content:encoded><![CDATA[<p>Thanks. I got it working easily enough by bringing in the global $post object to that function. </p>
<p>I owe you a beer (or six).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Blackbourn</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress#comment-6477</link>
		<dc:creator>John Blackbourn</dc:creator>
		<pubDate>Fri, 28 Sep 2012 21:04:51 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=294#comment-6477</guid>
		<description><![CDATA[If you want to introduce logic to determine which fields to show based on post  type then you&#039;ll have to use something like the &lt;code&gt;get_current_screen()&lt;/code&gt; object. There may be other parameters passed to that filter, but I don&#039;t know off the top of my head.]]></description>
		<content:encoded><![CDATA[<p>If you want to introduce logic to determine which fields to show based on post  type then you&#8217;ll have to use something like the <code>get_current_screen()</code> object. There may be other parameters passed to that filter, but I don&#8217;t know off the top of my head.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress#comment-6476</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Fri, 28 Sep 2012 20:58:34 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=294#comment-6476</guid>
		<description><![CDATA[Thanks for the response. 

So in the case of multiple types of custom fields, e.g. a custom post type with some of its own custom meta fields and other custom meta fields for pages, would that function be able to selectively output fields based on the type of post?

i.e. is anything passed to that function that would help determine which fields to return?]]></description>
		<content:encoded><![CDATA[<p>Thanks for the response. </p>
<p>So in the case of multiple types of custom fields, e.g. a custom post type with some of its own custom meta fields and other custom meta fields for pages, would that function be able to selectively output fields based on the type of post?</p>
<p>i.e. is anything passed to that function that would help determine which fields to return?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Blackbourn</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress#comment-6475</link>
		<dc:creator>John Blackbourn</dc:creator>
		<pubDate>Fri, 28 Sep 2012 19:19:23 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=294#comment-6475</guid>
		<description><![CDATA[Hi Josh,

In the plugin the function &lt;code&gt;pmr_fields()&lt;/code&gt; is the function which outputs the fields on the Revisions screen. It&#039;s the bit explained in the &quot;Displaying the meta field on the revisions screen&quot; section in the post above.

Hope this helps. John.]]></description>
		<content:encoded><![CDATA[<p>Hi Josh,</p>
<p>In the plugin the function <code>pmr_fields()</code> is the function which outputs the fields on the Revisions screen. It&#8217;s the bit explained in the &#8220;Displaying the meta field on the revisions screen&#8221; section in the post above.</p>
<p>Hope this helps. John.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress#comment-6474</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Fri, 28 Sep 2012 18:45:05 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=294#comment-6474</guid>
		<description><![CDATA[Found this page and it&#039;s very helpful, however something I&#039;m not seeing explained is the function in the plugin file, pmr_fields. Can you elaborate on what this function does and why it is there?

Thanks again, this is very helpful information.]]></description>
		<content:encoded><![CDATA[<p>Found this page and it&#8217;s very helpful, however something I&#8217;m not seeing explained is the function in the plugin file, pmr_fields. Can you elaborate on what this function does and why it is there?</p>
<p>Thanks again, this is very helpful information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Blackbourn</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress#comment-6461</link>
		<dc:creator>John Blackbourn</dc:creator>
		<pubDate>Wed, 25 Jul 2012 21:06:33 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=294#comment-6461</guid>
		<description><![CDATA[You&#039;re right Roman, the revision comparison functionality doesn&#039;t take post meta fields into account, and if the other post fields are the same then it&#039;ll give you the &quot;These revisions are identical&quot; message.

I&#039;m sure there&#039;s a ticket on WordPress&#039; Trac regarding improvements to the revisions screen, but for the life of me I can&#039;t find it. I&#039;m sure it covered this situation too.]]></description>
		<content:encoded><![CDATA[<p>You&#8217;re right Roman, the revision comparison functionality doesn&#8217;t take post meta fields into account, and if the other post fields are the same then it&#8217;ll give you the &#8220;These revisions are identical&#8221; message.</p>
<p>I&#8217;m sure there&#8217;s a ticket on WordPress&#8217; Trac regarding improvements to the revisions screen, but for the life of me I can&#8217;t find it. I&#8217;m sure it covered this situation too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roman</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress#comment-6460</link>
		<dc:creator>Roman</dc:creator>
		<pubDate>Wed, 25 Jul 2012 11:37:41 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=294#comment-6460</guid>
		<description><![CDATA[Great tip. It seems to work, except one little thing: If i hit the &quot;Compare Revisions&quot; button, I always get &quot;These revisions are identical.&quot;, but using &quot;get_post_meta&quot; on the revision ID, I can see the &quot;old&quot; meta values. Restoring works also, only the compare function doesn&#039;t work properly.

Cheers
Roman]]></description>
		<content:encoded><![CDATA[<p>Great tip. It seems to work, except one little thing: If i hit the &#8220;Compare Revisions&#8221; button, I always get &#8220;These revisions are identical.&#8221;, but using &#8220;get_post_meta&#8221; on the revision ID, I can see the &#8220;old&#8221; meta values. Restoring works also, only the compare function doesn&#8217;t work properly.</p>
<p>Cheers<br />
Roman</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HKawaii</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress#comment-6343</link>
		<dc:creator>HKawaii</dc:creator>
		<pubDate>Mon, 11 Jun 2012 19:20:58 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=294#comment-6343</guid>
		<description><![CDATA[Wow this is very useful! I hope this works with WordPress 3.3.2. Going to give it a try.]]></description>
		<content:encoded><![CDATA[<p>Wow this is very useful! I hope this works with WordPress 3.3.2. Going to give it a try.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
