<?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: WordPress Custom Comment Display</title>
	<atom:link href="http://www.artarmstrong.com/wordpress-custom-comment-display/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.artarmstrong.com/wordpress-custom-comment-display/</link>
	<description></description>
	<lastBuildDate>Sun, 13 Sep 2009 19:45:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Custom Dates in Comments :: The English Guy Web Design</title>
		<link>http://www.artarmstrong.com/wordpress-custom-comment-display/comment-page-1/#comment-424</link>
		<dc:creator>Custom Dates in Comments :: The English Guy Web Design</dc:creator>
		<pubDate>Sun, 13 Sep 2009 19:45:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.artarmstrong.com/?p=3#comment-424</guid>
		<description>[...] you need to customize the comments themselves. A good guide can be found at Art Armstrong&#8217;s blog. Once you have that installed in your functions.php file then you can alter it a [...]</description>
		<content:encoded><![CDATA[<p>[...] you need to customize the comments themselves. A good guide can be found at Art Armstrong&#8217;s blog. Once you have that installed in your functions.php file then you can alter it a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Art</title>
		<link>http://www.artarmstrong.com/wordpress-custom-comment-display/comment-page-1/#comment-418</link>
		<dc:creator>Art</dc:creator>
		<pubDate>Tue, 08 Sep 2009 15:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.artarmstrong.com/?p=3#comment-418</guid>
		<description>Hey Bineet,

The function code would be placed after or before the add_filter() section inside of the functions.php. It doesn&#039;t matter to much. It would look like something like this...

&#039;&#039;,
&#039;after_widget&#039; =&gt; &#039;&#039;,
&#039;before_title&#039; =&gt; &#039;&#039;,
&#039;after_title&#039; =&gt; &#039;&#039;,
));

function new_excerpt_length($length) {
return 20;
}
add_filter(&#039;excerpt_length&#039;, &#039;new_excerpt_length&#039;);

function mytheme_comment($comment, $args, $depth) {
...
}

Let me know if this helps.</description>
		<content:encoded><![CDATA[<p>Hey Bineet,</p>
<p>The function code would be placed after or before the add_filter() section inside of the functions.php. It doesn&#8217;t matter to much. It would look like something like this&#8230;</p>
<p>&#8221;,<br />
&#8216;after_widget&#8217; => &#8221;,<br />
&#8216;before_title&#8217; => &#8221;,<br />
&#8216;after_title&#8217; => &#8221;,<br />
));</p>
<p>function new_excerpt_length($length) {<br />
return 20;<br />
}<br />
add_filter(&#8216;excerpt_length&#8217;, &#8216;new_excerpt_length&#8217;);</p>
<p>function mytheme_comment($comment, $args, $depth) {<br />
&#8230;<br />
}</p>
<p>Let me know if this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bineet chaubey</title>
		<link>http://www.artarmstrong.com/wordpress-custom-comment-display/comment-page-1/#comment-417</link>
		<dc:creator>bineet chaubey</dc:creator>
		<pubDate>Tue, 08 Sep 2009 14:22:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.artarmstrong.com/?p=3#comment-417</guid>
		<description>hi i am beginner for wordpress  theme desige. so please tell me where we placed  these code in our function.php all source code of my fuction.php is 
&lt;code&gt;
 &#039;&#039;,
		&#039;after_widget&#039; =&gt; &#039;&#039;,
		&#039;before_title&#039; =&gt; &#039;&#039;,
		&#039;after_title&#039; =&gt; &#039;&#039;,
	));

	
	function new_excerpt_length($length) {
	return 20;
}
add_filter(&#039;excerpt_length&#039;, &#039;new_excerpt_length&#039;);

?&gt;

&lt;/code&gt;
please tell me in detail.

thanks</description>
		<content:encoded><![CDATA[<p>hi i am beginner for wordpress  theme desige. so please tell me where we placed  these code in our function.php all source code of my fuction.php is<br />
<code><br />
 '',<br />
		'after_widget' =&gt; '',<br />
		'before_title' =&gt; '',<br />
		'after_title' =&gt; '',<br />
	));</p>
<p>	function new_excerpt_length($length) {<br />
	return 20;<br />
}<br />
add_filter('excerpt_length', 'new_excerpt_length');</p>
<p>?&gt;</p>
<p></code><br />
please tell me in detail.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Art</title>
		<link>http://www.artarmstrong.com/wordpress-custom-comment-display/comment-page-1/#comment-13</link>
		<dc:creator>Art</dc:creator>
		<pubDate>Sun, 05 Apr 2009 17:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.artarmstrong.com/?p=3#comment-13</guid>
		<description>Ya, its completely different from the way that the default wp_list_comments() works. Because that function doesn&#039;t really give you any options for more than calling one function your limited. 

You have to make a simple foreach loop that goes through each of the comments and then customize it from there but if your not familiar with the functions related to the comments it gets hard.

If you want to email me with some problems your having or anything your welcome to, my email is &lt;a href=&quot;mailto:arthurjarmstrong@gmail.com&quot; rel=&quot;nofollow&quot;&gt;arthurjarmstrong@gmail.com&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Ya, its completely different from the way that the default wp_list_comments() works. Because that function doesn&#8217;t really give you any options for more than calling one function your limited. </p>
<p>You have to make a simple foreach loop that goes through each of the comments and then customize it from there but if your not familiar with the functions related to the comments it gets hard.</p>
<p>If you want to email me with some problems your having or anything your welcome to, my email is <a href="mailto:arthurjarmstrong@gmail.com" rel="nofollow">arthurjarmstrong@gmail.com</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kelly</title>
		<link>http://www.artarmstrong.com/wordpress-custom-comment-display/comment-page-1/#comment-12</link>
		<dc:creator>Kelly</dc:creator>
		<pubDate>Sun, 05 Apr 2009 15:58:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.artarmstrong.com/?p=3#comment-12</guid>
		<description>Ah, I see. I&#039;ve been trying to figure it out for a few days now but keep getting completely lost. I just can&#039;t seem to wrap my head around it.

I love the style of your comments here. Simple and clean.</description>
		<content:encoded><![CDATA[<p>Ah, I see. I&#8217;ve been trying to figure it out for a few days now but keep getting completely lost. I just can&#8217;t seem to wrap my head around it.</p>
<p>I love the style of your comments here. Simple and clean.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Art</title>
		<link>http://www.artarmstrong.com/wordpress-custom-comment-display/comment-page-1/#comment-11</link>
		<dc:creator>Art</dc:creator>
		<pubDate>Sun, 05 Apr 2009 02:32:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.artarmstrong.com/?p=3#comment-11</guid>
		<description>Well its kind of a pain in the butt but here is a general idea of what you would need to do as shown above in the updated post.

So this is a very basic example and not working but it will give you intervals so you can change the class and put a counter if you wanted to along with custom output. This does not have the author, avatar, etc, just the comment. Again, this is probably not working because I havent tested it at all so you will have to  clean it up and check some of the functions.</description>
		<content:encoded><![CDATA[<p>Well its kind of a pain in the butt but here is a general idea of what you would need to do as shown above in the updated post.</p>
<p>So this is a very basic example and not working but it will give you intervals so you can change the class and put a counter if you wanted to along with custom output. This does not have the author, avatar, etc, just the comment. Again, this is probably not working because I havent tested it at all so you will have to  clean it up and check some of the functions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kelly</title>
		<link>http://www.artarmstrong.com/wordpress-custom-comment-display/comment-page-1/#comment-9</link>
		<dc:creator>Kelly</dc:creator>
		<pubDate>Sat, 04 Apr 2009 06:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.artarmstrong.com/?p=3#comment-9</guid>
		<description>Is the code above what you used to get your comments here?

I want almost exactly what you have only without the avatars and numbered but I&#039;m still having a hard time understand how to do it.</description>
		<content:encoded><![CDATA[<p>Is the code above what you used to get your comments here?</p>
<p>I want almost exactly what you have only without the avatars and numbered but I&#8217;m still having a hard time understand how to do it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Art</title>
		<link>http://www.artarmstrong.com/wordpress-custom-comment-display/comment-page-1/#comment-5</link>
		<dc:creator>Art</dc:creator>
		<pubDate>Tue, 24 Mar 2009 03:12:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.artarmstrong.com/?p=3#comment-5</guid>
		<description>Woah woah woah, are you serious?!?! That&#039;s a little to extreme, even for a web developer like me. I mean that&#039;s like rewriting the Internets.</description>
		<content:encoded><![CDATA[<p>Woah woah woah, are you serious?!?! That&#8217;s a little to extreme, even for a web developer like me. I mean that&#8217;s like rewriting the Internets.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: liz</title>
		<link>http://www.artarmstrong.com/wordpress-custom-comment-display/comment-page-1/#comment-4</link>
		<dc:creator>liz</dc:creator>
		<pubDate>Tue, 24 Mar 2009 02:31:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.artarmstrong.com/?p=3#comment-4</guid>
		<description>hon, did you know that you can actually edit the &quot;about&quot; page on wordpress to reflect, oh..i dunno, you? ;o) get it goin, damnit!</description>
		<content:encoded><![CDATA[<p>hon, did you know that you can actually edit the &#8220;about&#8221; page on wordpress to reflect, oh..i dunno, you? ;o) get it goin, damnit!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
