<?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: ColdForged&#8217;s WordPress Comment Template Deconstructed, Part 1</title>
	<atom:link href="http://www.coldforged.org/archives/2005/04/19/coldforgeds-wordpress-comment-template-deconstructed-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coldforged.org/archives/2005/04/19/coldforgeds-wordpress-comment-template-deconstructed-part-1/</link>
	<description>enjoying life so you don't have to</description>
	<pubDate>Thu, 08 Jan 2009 20:50:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Coisox</title>
		<link>http://www.coldforged.org/archives/2005/04/19/coldforgeds-wordpress-comment-template-deconstructed-part-1/comment-page-3/#comment-164370</link>
		<dc:creator>Coisox</dc:creator>
		<pubDate>Thu, 08 May 2008 08:16:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.coldforged.org/archives/2005/04/18//#comment-164370</guid>
		<description>&lt;p&gt;I think my previous comment didnt recorded well. Here again:&lt;/p&gt;

&lt;p&gt;Hi, I'm using WP 2.5.1. I copy and paste your &lt;a href="http://www.coldforged.org/source/view_source.php?s=comments.phps" rel="nofollow"&gt;comments.phps&lt;/a&gt; code and replace all code inside my \themes\theme_name\comments.php&lt;/p&gt;

&lt;p&gt;But I cant get it right. All comments are not displayed. I have disable another plugins which are &lt;b&gt;Guestbook Generator&lt;/b&gt; and &lt;b&gt;Paged Comments&lt;/b&gt;.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I think my previous comment didnt recorded well. Here again:</p>
<p>Hi, I&#8217;m using WP 2.5.1. I copy and paste your <a href="http://www.coldforged.org/source/view_source.php?s=comments.phps" rel="nofollow">comments.phps</a> code and replace all code inside my \themes\theme_name\comments.php</p>
<p>But I cant get it right. All comments are not displayed. I have disable another plugins which are <b>Guestbook Generator</b> and <b>Paged Comments</b>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.coldforged.org/archives/2005/04/19/coldforgeds-wordpress-comment-template-deconstructed-part-1/comment-page-3/#comment-161170</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 23 Apr 2008 13:29:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.coldforged.org/archives/2005/04/18//#comment-161170</guid>
		<description>&lt;p&gt;test my comment&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>test my comment</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Urinal Puck</title>
		<link>http://www.coldforged.org/archives/2005/04/19/coldforgeds-wordpress-comment-template-deconstructed-part-1/comment-page-3/#comment-90188</link>
		<dc:creator>Urinal Puck</dc:creator>
		<pubDate>Sat, 16 Jun 2007 13:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.coldforged.org/archives/2005/04/18//#comment-90188</guid>
		<description>&lt;p&gt;I know this is almost two years old, but it's still one of the best step by step Wordpress comment stylings I've seen.  Thanks!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I know this is almost two years old, but it&#8217;s still one of the best step by step Wordpress comment stylings I&#8217;ve seen.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: charlie</title>
		<link>http://www.coldforged.org/archives/2005/04/19/coldforgeds-wordpress-comment-template-deconstructed-part-1/comment-page-2/#comment-78709</link>
		<dc:creator>charlie</dc:creator>
		<pubDate>Mon, 19 Feb 2007 02:55:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.coldforged.org/archives/2005/04/18//#comment-78709</guid>
		<description>&lt;blockquote&gt;&lt;a href="#comment-42570" title="View the original comment" rel="nofollow"&gt;&lt;b&gt;todd said:&lt;/b&gt;&lt;/a&gt;&lt;p&gt;i am trying to implement this and it looks like i have the same problem as another user where the comment numbers are skipping the first comment and putting the "1" on the second.  i assume i am missing a line like the last person, but can't figure out which one...&lt;/p&gt;

&lt;p&gt;i am wondering if it has to do with missing this: $commentcount=1;&lt;/p&gt;

&lt;p&gt;but i have no clue where to put it or how to put it :) &lt;/p&gt;

&lt;p&gt;any help?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It has everything to do with missing that variable initialization. :) Instead of initializing the first comment to "1", you're just incrementing the variable from what php assumes to start at 0 after writing the first comment; hence you get "1" as the second comment.&lt;/p&gt;

&lt;p&gt;You want to put that snippet of code just after the line that evaluates whether there are comments or not. It should be placed after something like this:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&lt;/code&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<blockquote><p><a href="#comment-42570" title="View the original comment" rel="nofollow"><b>todd said:</b></a>
<p>i am trying to implement this and it looks like i have the same problem as another user where the comment numbers are skipping the first comment and putting the &#8220;1&#8243; on the second.  i assume i am missing a line like the last person, but can&#8217;t figure out which one&#8230;</p>
<p>i am wondering if it has to do with missing this: $commentcount=1;</p>
<p>but i have no clue where to put it or how to put it <img src='http://www.coldforged.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>any help?</p>
</blockquote>
<p>It has everything to do with missing that variable initialization. <img src='http://www.coldforged.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Instead of initializing the first comment to &#8220;1&#8243;, you&#8217;re just incrementing the variable from what php assumes to start at 0 after writing the first comment; hence you get &#8220;1&#8243; as the second comment.</p>
<p>You want to put that snippet of code just after the line that evaluates whether there are comments or not. It should be placed after something like this:</p>
<p><code></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: john</title>
		<link>http://www.coldforged.org/archives/2005/04/19/coldforgeds-wordpress-comment-template-deconstructed-part-1/comment-page-2/#comment-75478</link>
		<dc:creator>john</dc:creator>
		<pubDate>Wed, 17 Jan 2007 01:48:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.coldforged.org/archives/2005/04/18//#comment-75478</guid>
		<description>&lt;p&gt;is there a way you can do this without php?  I want to alternate style with just html and javascript.  Thanks for any help.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>is there a way you can do this without php?  I want to alternate style with just html and javascript.  Thanks for any help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: todd</title>
		<link>http://www.coldforged.org/archives/2005/04/19/coldforgeds-wordpress-comment-template-deconstructed-part-1/comment-page-2/#comment-42570</link>
		<dc:creator>todd</dc:creator>
		<pubDate>Tue, 27 Jun 2006 16:05:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.coldforged.org/archives/2005/04/18//#comment-42570</guid>
		<description>&lt;p&gt;i am trying to implement this and it looks like i have the same problem as another user where the comment numbers are skipping the first comment and putting the "1" on the second.  i assume i am missing a line like the last person, but can't figure out which one...&lt;/p&gt;

&lt;p&gt;i am wondering if it has to do with missing this: $commentcount=1;&lt;/p&gt;

&lt;p&gt;but i have no clue where to put it or how to put it :) &lt;/p&gt;

&lt;p&gt;any help?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>i am trying to implement this and it looks like i have the same problem as another user where the comment numbers are skipping the first comment and putting the &#8220;1&#8243; on the second.  i assume i am missing a line like the last person, but can&#8217;t figure out which one&#8230;</p>
<p>i am wondering if it has to do with missing this: $commentcount=1;</p>
<p>but i have no clue where to put it or how to put it <img src='http://www.coldforged.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>any help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ColdForged</title>
		<link>http://www.coldforged.org/archives/2005/04/19/coldforgeds-wordpress-comment-template-deconstructed-part-1/comment-page-2/#comment-10449</link>
		<dc:creator>ColdForged</dc:creator>
		<pubDate>Fri, 14 Apr 2006 09:08:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.coldforged.org/archives/2005/04/18//#comment-10449</guid>
		<description>&lt;p&gt;good, thanks!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>good, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shadowsector.org &#187; Blog Archive &#187; modifying comments in wordpress</title>
		<link>http://www.coldforged.org/archives/2005/04/19/coldforgeds-wordpress-comment-template-deconstructed-part-1/comment-page-2/#comment-8757</link>
		<dc:creator>shadowsector.org &#187; Blog Archive &#187; modifying comments in wordpress</dc:creator>
		<pubDate>Tue, 07 Mar 2006 21:52:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.coldforged.org/archives/2005/04/18//#comment-8757</guid>
		<description>&lt;p&gt;[...] ColdForged&#8217;s WordPress Comment Template Deconstructed, Part 1 [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] ColdForged&#8217;s WordPress Comment Template Deconstructed, Part 1 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PlanetPhillip</title>
		<link>http://www.coldforged.org/archives/2005/04/19/coldforgeds-wordpress-comment-template-deconstructed-part-1/comment-page-2/#comment-8753</link>
		<dc:creator>PlanetPhillip</dc:creator>
		<pubDate>Tue, 07 Mar 2006 17:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.coldforged.org/archives/2005/04/18//#comment-8753</guid>
		<description>&lt;p&gt;Thank you so much.  You are now number three on my hero list!  BTW the link didn't seem to work, I had to view the source to find it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thank you so much.  You are now number three on my hero list!  BTW the link didn&#8217;t seem to work, I had to view the source to find it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ColdForged</title>
		<link>http://www.coldforged.org/archives/2005/04/19/coldforgeds-wordpress-comment-template-deconstructed-part-1/comment-page-2/#comment-8752</link>
		<dc:creator>ColdForged</dc:creator>
		<pubDate>Tue, 07 Mar 2006 17:02:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.coldforged.org/archives/2005/04/18//#comment-8752</guid>
		<description>&lt;blockquote&gt;
  &lt;p&gt;&lt;strong&gt;PlanetPhillip said&lt;/strong&gt;: Sorry Iâ€™m a bit dim!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Bah, not knowing PHP doesn't make you dim. &lt;a href="http://coldforged.pastebin.com/589138" rel="nofollow"&gt;Here's a sample&lt;/a&gt; that should get you further.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<blockquote>
<p><strong>PlanetPhillip said</strong>: Sorry Iâ€™m a bit dim!</p>
</blockquote>
<p>Bah, not knowing PHP doesn&#8217;t make you dim. <a href="http://coldforged.pastebin.com/589138" rel="nofollow">Here&#8217;s a sample</a> that should get you further.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
