<?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: Custom Taxonomies In WordPress Plugins</title> <atom:link href="http://www.leewillis.co.uk/custom-taxonomies-wordpress-plugins/feed/" rel="self" type="application/rss+xml" /><link>http://www.leewillis.co.uk/custom-taxonomies-wordpress-plugins/</link> <description></description> <lastBuildDate>Sat, 04 Feb 2012 09:13:04 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>By: Lee</title><link>http://www.leewillis.co.uk/custom-taxonomies-wordpress-plugins/comment-page-1/#comment-161</link> <dc:creator>Lee</dc:creator> <pubDate>Sun, 25 Oct 2009 16:00:45 +0000</pubDate> <guid
isPermaLink="false">http://www.leewillis.co.uk/?p=113#comment-161</guid> <description>Actually - there&#039;s a really small bug in 3.1.7 that causes the modification dates to not show up properly. Fortunately the fix is simple - just add the following to the end of the $lastMods query on line 2198:GROUP BY r.term_taxonomy_idSo the whole query reads:SELECT
r.term_taxonomy_id AS term_id,
UNIX_TIMESTAMP(MAX(post_date_gmt)) as mod_date
FROM
{$wpdb-&gt;posts} p , {$wpdb-&gt;term_relationships} r
WHERE
p.ID = r.object_id
AND p.post_status = &#039;publish&#039;
AND p.post_type = &#039;post&#039;
AND p.post_password = &#039;&#039;
AND r.term_taxonomy_id IN ( &quot;. implode(&#039;,&#039;,$termIDs) .&quot;)
GROUP BY r.term_taxonomy_id</description> <content:encoded><![CDATA[<p>Actually &#8211; there&#8217;s a really small bug in 3.1.7 that causes the modification dates to not show up properly. Fortunately the fix is simple &#8211; just add the following to the end of the $lastMods query on line 2198:</p><p>GROUP BY r.term_taxonomy_id</p><p>So the whole query reads:</p><p> SELECT<br
/> r.term_taxonomy_id AS term_id,<br
/> UNIX_TIMESTAMP(MAX(post_date_gmt)) as mod_date<br
/> FROM<br
/> {$wpdb->posts} p , {$wpdb->term_relationships} r<br
/> WHERE<br
/> p.ID = r.object_id<br
/> AND p.post_status = &#8216;publish&#8217;<br
/> AND p.post_type = &#8216;post&#8217;<br
/> AND p.post_password = &#8221;<br
/> AND r.term_taxonomy_id IN ( &#8220;. implode(&#8216;,&#8217;,$termIDs) .&#8221;)<br
/> GROUP BY r.term_taxonomy_id</p> ]]></content:encoded> </item> <item><title>By: Lee</title><link>http://www.leewillis.co.uk/custom-taxonomies-wordpress-plugins/comment-page-1/#comment-160</link> <dc:creator>Lee</dc:creator> <pubDate>Sun, 25 Oct 2009 14:51:37 +0000</pubDate> <guid
isPermaLink="false">http://www.leewillis.co.uk/?p=113#comment-160</guid> <description>@eddai - Actually version 3.1.7 should already support custom taxonomies - Arne (The developer) accepted my patches - I just hadn&#039;t got around to updating this post just yet. Hope that helps.</description> <content:encoded><![CDATA[<p>@eddai &#8211; Actually version 3.1.7 should already support custom taxonomies &#8211; Arne (The developer) accepted my patches &#8211; I just hadn&#8217;t got around to updating this post just yet. Hope that helps.</p> ]]></content:encoded> </item> <item><title>By: eddai</title><link>http://www.leewillis.co.uk/custom-taxonomies-wordpress-plugins/comment-page-1/#comment-159</link> <dc:creator>eddai</dc:creator> <pubDate>Sun, 25 Oct 2009 13:18:20 +0000</pubDate> <guid
isPermaLink="false">http://www.leewillis.co.uk/?p=113#comment-159</guid> <description>@Lee,
google sitemap generator 3.1.7 is out..so will your patches work with it ?</description> <content:encoded><![CDATA[<p>@Lee,<br
/> google sitemap generator 3.1.7 is out..so will your patches work with it ?</p> ]]></content:encoded> </item> <item><title>By: cracks</title><link>http://www.leewillis.co.uk/custom-taxonomies-wordpress-plugins/comment-page-1/#comment-78</link> <dc:creator>cracks</dc:creator> <pubDate>Wed, 16 Sep 2009 00:01:18 +0000</pubDate> <guid
isPermaLink="false">http://www.leewillis.co.uk/?p=113#comment-78</guid> <description>wow. worked like a dream Lee - thank you.</description> <content:encoded><![CDATA[<p>wow. worked like a dream Lee &#8211; thank you.</p> ]]></content:encoded> </item> <item><title>By: Lee</title><link>http://www.leewillis.co.uk/custom-taxonomies-wordpress-plugins/comment-page-1/#comment-77</link> <dc:creator>Lee</dc:creator> <pubDate>Tue, 15 Sep 2009 18:57:31 +0000</pubDate> <guid
isPermaLink="false">http://www.leewillis.co.uk/?p=113#comment-77</guid> <description>Since I&#039;ve had a couple of requests from people who aren&#039;t really into patching - I&#039;ve put copies of the ready patched files here:http://www.leewillis.co.uk/patches/google-sitemap-generator/3.1.6/sitemap-core.php
http://www.leewillis.co.uk/patches/google-sitemap-generator/3.1.6/sitemap-ui.phpSimply put these in wp-content/plugins/google-sitemap-generator in place of the current versions and you&#039;ll get the new functionality.Note: These are for version 3.1.6 of the plugin only.</description> <content:encoded><![CDATA[<p>Since I&#8217;ve had a couple of requests from people who aren&#8217;t really into patching &#8211; I&#8217;ve put copies of the ready patched files here:</p><p><a
href="http://www.leewillis.co.uk/patches/google-sitemap-generator/3.1.6/sitemap-core.php" rel="nofollow">http://www.leewillis.co.uk/patches/google-sitemap-generator/3.1.6/sitemap-core.php</a><br
/> <a
href="http://www.leewillis.co.uk/patches/google-sitemap-generator/3.1.6/sitemap-ui.php" rel="nofollow">http://www.leewillis.co.uk/patches/google-sitemap-generator/3.1.6/sitemap-ui.php</a></p><p>Simply put these in wp-content/plugins/google-sitemap-generator in place of the current versions and you&#8217;ll get the new functionality.</p><p>Note: These are for version 3.1.6 of the plugin only.</p> ]]></content:encoded> </item> <item><title>By: Lee</title><link>http://www.leewillis.co.uk/custom-taxonomies-wordpress-plugins/comment-page-1/#comment-76</link> <dc:creator>Lee</dc:creator> <pubDate>Tue, 15 Sep 2009 07:58:43 +0000</pubDate> <guid
isPermaLink="false">http://www.leewillis.co.uk/?p=113#comment-76</guid> <description>Hi, You need to apply the patch to your current plugin using the UNIX &quot;patch&quot; utility. Quick example below (This assumes that you&#039;ve got shell access to your webhost):Download the patch (Make sure to grab the right version for the version of the plugin you&#039;ve got installed), and save it in the plugin directory (wp-content/plugins/google-sitemap-generator) as patch.txt. Then run the following commands:$ cd wp-content/plugins/
$ patch -p1 &lt; patch.txtIf you don&#039;t have any joy with that, then let me know, and I&#039;ll try and put some ready-patched versions up - but that won&#039;t be until tonight I&#039;m afraid ...</description> <content:encoded><![CDATA[<p>Hi, You need to apply the patch to your current plugin using the UNIX &#8220;patch&#8221; utility. Quick example below (This assumes that you&#8217;ve got shell access to your webhost):</p><p>Download the patch (Make sure to grab the right version for the version of the plugin you&#8217;ve got installed), and save it in the plugin directory (wp-content/plugins/google-sitemap-generator) as patch.txt. Then run the following commands:</p><p>$ cd wp-content/plugins/<br
/> $ patch -p1 &lt; patch.txt</p><p>If you don&#039;t have any joy with that, then let me know, and I&#039;ll try and put some ready-patched versions up &#8211; but that won&#039;t be until tonight I&#039;m afraid &#8230;</p> ]]></content:encoded> </item> <item><title>By: cracks</title><link>http://www.leewillis.co.uk/custom-taxonomies-wordpress-plugins/comment-page-1/#comment-75</link> <dc:creator>cracks</dc:creator> <pubDate>Tue, 15 Sep 2009 02:01:33 +0000</pubDate> <guid
isPermaLink="false">http://www.leewillis.co.uk/?p=113#comment-75</guid> <description>wow. the Goog XML Siteap patch is much needed - great work.now that i found it, what do i do with it / where do i put it / how ..?</description> <content:encoded><![CDATA[<p>wow. the Goog XML Siteap patch is much needed &#8211; great work.</p><p>now that i found it, what do i do with it / where do i put it / how ..?</p> ]]></content:encoded> </item> <item><title>By: Lee</title><link>http://www.leewillis.co.uk/custom-taxonomies-wordpress-plugins/comment-page-1/#comment-68</link> <dc:creator>Lee</dc:creator> <pubDate>Sat, 05 Sep 2009 19:05:38 +0000</pubDate> <guid
isPermaLink="false">http://www.leewillis.co.uk/?p=113#comment-68</guid> <description>And another update against version 3.1.6 here. This version also calculates a modification date based on the most recent article tagged with a term - which should help Google pick up changes to your term archive pages:http://www.leewillis.co.uk/patches/google-sitemap-generator/include_taxonomies_v3.1.6.txt</description> <content:encoded><![CDATA[<p>And another update against version 3.1.6 here. This version also calculates a modification date based on the most recent article tagged with a term &#8211; which should help Google pick up changes to your term archive pages:</p><p><a
href="http://www.leewillis.co.uk/patches/google-sitemap-generator/include_taxonomies_v3.1.6.txt" rel="nofollow">http://www.leewillis.co.uk/patches/google-sitemap-generator/include_taxonomies_v3.1.6.txt</a></p> ]]></content:encoded> </item> <item><title>By: Lee</title><link>http://www.leewillis.co.uk/custom-taxonomies-wordpress-plugins/comment-page-1/#comment-59</link> <dc:creator>Lee</dc:creator> <pubDate>Mon, 24 Aug 2009 21:32:10 +0000</pubDate> <guid
isPermaLink="false">http://www.leewillis.co.uk/?p=113#comment-59</guid> <description>There&#039;s an updated version of the patch for Google XML Sitemaps v3.1.5 here:http://www.leewillis.co.uk/patches/google-sitemap-generator/include_taxonomies_v3.1.5.txt</description> <content:encoded><![CDATA[<p>There&#8217;s an updated version of the patch for Google XML Sitemaps v3.1.5 here:</p><p><a
href="http://www.leewillis.co.uk/patches/google-sitemap-generator/include_taxonomies_v3.1.5.txt" rel="nofollow">http://www.leewillis.co.uk/patches/google-sitemap-generator/include_taxonomies_v3.1.5.txt</a></p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)

Served from: www.leewillis.co.uk @ 2012-02-04 19:07:26 -->
