<?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 for ArtArmstrong.com</title>
	<atom:link href="http://artarmstrong.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://artarmstrong.com</link>
	<description>All the things you never wanted to know...</description>
	<lastBuildDate>Thu, 12 May 2011 20:47:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on WordPress Custom Comment Display by Tseg</title>
		<link>http://artarmstrong.com/blog/2009/03/09/wordpress-custom-comment-display/#comment-411</link>
		<dc:creator>Tseg</dc:creator>
		<pubDate>Thu, 12 May 2011 20:47:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.artarmstrong.com/?p=3#comment-411</guid>
		<description>I think so also</description>
		<content:encoded><![CDATA[<p>I think so also</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Custom Comment Display by customize</title>
		<link>http://artarmstrong.com/blog/2009/03/09/wordpress-custom-comment-display/#comment-14</link>
		<dc:creator>customize</dc:creator>
		<pubDate>Fri, 18 Mar 2011 15:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.artarmstrong.com/?p=3#comment-14</guid>
		<description>nice customization on this blog</description>
		<content:encoded><![CDATA[<p>nice customization on this blog</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comcast Changes Their Account Login Process by EKUNDAYS AMOS</title>
		<link>http://artarmstrong.com/blog/2009/12/03/comcast-changes-their-account-login-process/#comment-2</link>
		<dc:creator>EKUNDAYS AMOS</dc:creator>
		<pubDate>Sat, 12 Feb 2011 16:47:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.artarmstrong.com/?p=28#comment-2</guid>
		<description>why is it so difficult to pay my cable bill on line and on time?I</description>
		<content:encoded><![CDATA[<p>why is it so difficult to pay my cable bill on line and on time?I</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Year Resolution for Web Developers by Patrick Armstrong</title>
		<link>http://artarmstrong.com/blog/2011/01/01/new-year-resolution-for-web-developers/#comment-15</link>
		<dc:creator>Patrick Armstrong</dc:creator>
		<pubDate>Sun, 02 Jan 2011 21:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://artarmstrong.com/?p=78#comment-15</guid>
		<description>I should have some time to dedicate to web development in the coming months. I&#039;m thinking about not taking any classes next semester in architectural 3D and studying on my own. I already got the book and have had the software for some time.    Peace,</description>
		<content:encoded><![CDATA[<p>I should have some time to dedicate to web development in the coming months. I&#8217;m thinking about not taking any classes next semester in architectural 3D and studying on my own. I already got the book and have had the software for some time.    Peace,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Custom Comment Display by Custom Dates in Comments :: The English Guy Web Design</title>
		<link>http://artarmstrong.com/blog/2009/03/09/wordpress-custom-comment-display/#comment-12</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-12</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>Comment on WordPress Custom Comment Display by Art</title>
		<link>http://artarmstrong.com/blog/2009/03/09/wordpress-custom-comment-display/#comment-11</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-11</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; =&gt; &#8221;,<br />
&#8216;before_title&#8217; =&gt; &#8221;,<br />
&#8216;after_title&#8217; =&gt; &#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>Comment on WordPress Custom Comment Display by bineet chaubey</title>
		<link>http://artarmstrong.com/blog/2009/03/09/wordpress-custom-comment-display/#comment-10</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-10</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>Comment on WordPress Custom Comment Display by Art</title>
		<link>http://artarmstrong.com/blog/2009/03/09/wordpress-custom-comment-display/#comment-9</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-9</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>Comment on WordPress Custom Comment Display by Kelly</title>
		<link>http://artarmstrong.com/blog/2009/03/09/wordpress-custom-comment-display/#comment-8</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-8</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>Comment on WordPress Custom Comment Display by Art</title>
		<link>http://artarmstrong.com/blog/2009/03/09/wordpress-custom-comment-display/#comment-7</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-7</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>
</channel>
</rss>

