<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Link organisation with the Category Overload plugin</title>
	<link>http://muttznutz.net/muttzblog/site-news/link-organisation-with-the-categoryoverload-plugin/2007/05/13</link>
	<description>Underwater photography by Andy Kirkland</description>
	<pubDate>Thu, 28 Aug 2008 00:40:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
		<item>
		<title>By: muttznutz</title>
		<link>http://muttznutz.net/muttzblog/site-news/link-organisation-with-the-categoryoverload-plugin/2007/05/13#comment-81</link>
		<dc:creator>muttznutz</dc:creator>
		<pubDate>Mon, 12 Nov 2007 04:38:00 +0000</pubDate>
		<guid>http://muttznutz.net/muttzblog/site-news/link-organisation-with-the-categoryoverload-plugin/2007/05/13#comment-81</guid>
		<description>&lt;p&gt;I'm just trying to upgrade to Wordpress 2.3.1
Not everything's working too well, but I'm trying to get through the new database structure.

Key point - I've disabled CategoryOverload.
I've hopefully made the code above a bit more compliant (using the $wpdb-&gt; prefix).
Some of the underlying tables have changed, so here's a replacement for the SQL in the 13th May post (which seems to work for me).
[code lang="sql"]
SELECT term_id, name
FROM $wpdb-&gt;terms
WHERE term_id IN
(
   SELECT term_id
   FROM $wpdb-&gt;term_taxonomy
   WHERE parent=6
)
ORDER BY term_id
[/code]
As the 'get_links' tag - used above - is deprecated in WordPress 2.3, I suppose it's probably best if you switch to the wp_list_bookmarks tag instead.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;m just trying to upgrade to Wordpress 2.3.1<br />
Not everything&#8217;s working too well, but I&#8217;m trying to get through the new database structure.</p>
<p>Key point - I&#8217;ve disabled CategoryOverload.<br />
I&#8217;ve hopefully made the code above a bit more compliant (using the $wpdb-> prefix).<br />
Some of the underlying tables have changed, so here&#8217;s a replacement for the SQL in the 13th May post (which seems to work for me).</p>
<div class="codesnip-container" >
<div class="codesnip"><span class="kw1">SELECT</span> term_id, name<br />
<span class="kw1">FROM</span> $wpdb-&gt;terms<br />
<span class="kw1">WHERE</span> term_id <span class="kw1">IN</span><br />
<span class="br0">&#40;</span><br />
&nbsp; &nbsp;<span class="kw1">SELECT</span> term_id<br />
&nbsp; &nbsp;<span class="kw1">FROM</span> $wpdb-&gt;term_taxonomy<br />
&nbsp; &nbsp;<span class="kw1">WHERE</span> parent=<span class="nu0">6</span><br />
<span class="br0">&#41;</span><br />
<span class="kw1">ORDER</span> <span class="kw1">BY</span> term_id</div>
</div>
<p>As the &#8216;get_links&#8217; tag - used above - is deprecated in WordPress 2.3, I suppose it&#8217;s probably best if you switch to the wp_list_bookmarks tag instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: muttznutz</title>
		<link>http://muttznutz.net/muttzblog/site-news/link-organisation-with-the-categoryoverload-plugin/2007/05/13#comment-17</link>
		<dc:creator>muttznutz</dc:creator>
		<pubDate>Fri, 25 May 2007 01:10:44 +0000</pubDate>
		<guid>http://muttznutz.net/muttzblog/site-news/link-organisation-with-the-categoryoverload-plugin/2007/05/13#comment-17</guid>
		<description>The above code segments still seem to work with WP 2.2</description>
		<content:encoded><![CDATA[<p>The above code segments still seem to work with WP 2.2</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: muttznutz</title>
		<link>http://muttznutz.net/muttzblog/site-news/link-organisation-with-the-categoryoverload-plugin/2007/05/13#comment-6</link>
		<dc:creator>muttznutz</dc:creator>
		<pubDate>Mon, 21 May 2007 22:11:44 +0000</pubDate>
		<guid>http://muttznutz.net/muttzblog/site-news/link-organisation-with-the-categoryoverload-plugin/2007/05/13#comment-6</guid>
		<description>I've also used the &lt;a href="http://txfx.net/2004/05/25/get-comment-count/" rel="nofollow"&gt;Get Comments Count&lt;/a&gt; plugin from Mark Jaquith's Tempus Fugit site. 
It should make posts summaries cleaner, by only highlighting posts where there is a comment.
Here's how I use it in my Category pages :
[code lang="php"]
&lt; ?php if (get_comments_count() &gt; 0) : ?&gt;
    This post has &lt; ?php comments_number(); ?&gt; 
&lt; ?php endif; ?&gt;
[/code]
</description>
		<content:encoded><![CDATA[<p>I&#8217;ve also used the <a href="http://txfx.net/2004/05/25/get-comment-count/" rel="nofollow">Get Comments Count</a> plugin from Mark Jaquith&#8217;s Tempus Fugit site.<br />
It should make posts summaries cleaner, by only highlighting posts where there is a comment.<br />
Here&#8217;s how I use it in my Category pages :</p>
<div class="codesnip-container" >
<div class="codesnip"><span class="kw2">&lt;?php</span> <span class="kw1">if</span> <span class="br0">&#40;</span>get_comments_count<span class="br0">&#40;</span><span class="br0">&#41;</span> &gt; <span class="nu0">0</span><span class="br0">&#41;</span> : <span class="kw2">?&gt;</span><br />
&nbsp; &nbsp; This post has <span class="kw2">&lt;?php</span> comments_number<span class="br0">&#40;</span><span class="br0">&#41;</span>; <span class="kw2">?&gt;</span> <br />
<span class="kw2">&lt;?php</span> <span class="kw1">endif</span>; <span class="kw2">?&gt;</span></div>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: muttznutz</title>
		<link>http://muttznutz.net/muttzblog/site-news/link-organisation-with-the-categoryoverload-plugin/2007/05/13#comment-5</link>
		<dc:creator>muttznutz</dc:creator>
		<pubDate>Sun, 20 May 2007 13:03:47 +0000</pubDate>
		<guid>http://muttznutz.net/muttzblog/site-news/link-organisation-with-the-categoryoverload-plugin/2007/05/13#comment-5</guid>
		<description>I had a few problems getting the code to appear properly. My apologies to anyone affected.
So I've installed the &lt;a href="http://blog.hackerforhire.org/2007/03/16/code-snippet-20/" rel="nofollow"&gt;codesnippet plugin&lt;/a&gt; - which "colourises" the code as well. Thanks to those involved.
I've also - hopefully - got the Comments function working as I'd like (if you can see this, then I have).
This is mostly so I can give updates on topics.
I'm afraid I'm not still opening them up in general, however, as I don't have time to moderate all the spam entries.</description>
		<content:encoded><![CDATA[<p>I had a few problems getting the code to appear properly. My apologies to anyone affected.<br />
So I&#8217;ve installed the <a href="http://blog.hackerforhire.org/2007/03/16/code-snippet-20/" rel="nofollow">codesnippet plugin</a> - which &#8220;colourises&#8221; the code as well. Thanks to those involved.<br />
I&#8217;ve also - hopefully - got the Comments function working as I&#8217;d like (if you can see this, then I have).<br />
This is mostly so I can give updates on topics.<br />
I&#8217;m afraid I&#8217;m not still opening them up in general, however, as I don&#8217;t have time to moderate all the spam entries.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
