<?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: Modern horrors; skinning wordpress</title>
	<atom:link href="http://blog.jorygeerts.com/2006/10/26/modern-horrors-skinning-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jorygeerts.com/2006/10/26/modern-horrors-skinning-wordpress/</link>
	<description>Just another WordPress weblog, or something like that</description>
	<lastBuildDate>Sun, 16 May 2010 16:52:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Matthew</title>
		<link>http://blog.jorygeerts.com/2006/10/26/modern-horrors-skinning-wordpress/comment-page-1/#comment-35</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Thu, 02 Nov 2006 22:16:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jorygeerts.com/2006/10/26/modern-horrors-skinning-wordpress/#comment-35</guid>
		<description>Oh, forgot to mention:

I must be a complete n00b at code/PHP etc. or something, because I find making layouts and designs for WordPress dead easy somehow. And yet, it seems that people that are good with code (not me :P) hate WP&#039;s templating system. Seems strange :S</description>
		<content:encoded><![CDATA[<p>Oh, forgot to mention:</p>
<p>I must be a complete n00b at code/PHP etc. or something, because I find making layouts and designs for WordPress dead easy somehow. And yet, it seems that people that are good with code (not me <img src='http://blog.jorygeerts.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ) hate WP&#8217;s templating system. Seems strange :S</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew</title>
		<link>http://blog.jorygeerts.com/2006/10/26/modern-horrors-skinning-wordpress/comment-page-1/#comment-34</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Thu, 02 Nov 2006 22:14:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jorygeerts.com/2006/10/26/modern-horrors-skinning-wordpress/#comment-34</guid>
		<description>Not sure why I didn&#039;t comment on this earlier (yes, I do lurk around and read your blog through RSS :shifty:).

&lt;blockquote&gt;If anybody knows what to add where so I have the x comments under a post on the index as Kudrik / K2 has (the default with the blue header), please leave a comment.&lt;/blockquote&gt;

Well, i&#039;m not sure &lt;em&gt;where&lt;/em&gt; exactly to put it, as it will differ depending on the theme, and I couldn&#039;t looks at a copy of this theme to check (the site won&#039;t load... same as many sites have been doing today :ermm:). 
But what you basically need put in is this code:

&lt;code&gt;&lt;?php comments_number(&quot;No comments&quot;, &quot;1 comment&quot;, &quot;% comments&quot;); ?&gt;&lt;/code&gt;

That&#039;ll show something like &#039;1 comment&#039; or &#039;5 comments&#039; wherever it&#039;s placed.

And if you want to make that into a link to the comments, just use this:

&lt;code&gt;&lt;a href=&quot;&lt;?php comments_link(); ?&gt;&quot;&gt;&lt;?php comments_number(&quot;No comments&quot;, &quot;1 comment&quot;, &quot;% comments&quot;); ?&gt;&lt;/a&gt;&lt;/code&gt;

It &lt;em&gt;should&lt;/em&gt; be obvious where that goes. It&#039;s usually before the &lt;code&gt;&lt;?php endforeach; ?&gt;&lt;/code&gt;, and after the &lt;code&gt;&lt;?php the_content(); ?&gt;&lt;/code&gt;

Hope that&#039;s what you wanted. In case you need it in future, the &lt;a href=&quot;http://codex.wordpress.org/&quot; rel=&quot;nofollow&quot;&gt;WordPress Codex&lt;/a&gt;&#039;s &lt;a href=&quot;http://codex.wordpress.org/Blog_Design_and_Layout&quot; rel=&quot;nofollow&quot;&gt;Design and Layout&lt;/a&gt; section, particularly the &lt;a href=&quot;http://codex.wordpress.org/Template_Tags&quot; rel=&quot;nofollow&quot;&gt;Template tags&lt;/a&gt; bit, is excellent for stuff like this :)

Nice theme BTW, it looks good. Nice and easy to read aswell :)</description>
		<content:encoded><![CDATA[<p>Not sure why I didn&#8217;t comment on this earlier (yes, I do lurk around and read your blog through RSS :shifty:).</p>
<blockquote><p>If anybody knows what to add where so I have the x comments under a post on the index as Kudrik / K2 has (the default with the blue header), please leave a comment.</p></blockquote>
<p>Well, i&#8217;m not sure <em>where</em> exactly to put it, as it will differ depending on the theme, and I couldn&#8217;t looks at a copy of this theme to check (the site won&#8217;t load&#8230; same as many sites have been doing today :ermm:).<br />
But what you basically need put in is this code:</p>
<p><code>&lt;?php comments_number("No comments", "1 comment", "% comments"); ?&gt;</code></p>
<p>That&#8217;ll show something like &#8217;1 comment&#8217; or &#8217;5 comments&#8217; wherever it&#8217;s placed.</p>
<p>And if you want to make that into a link to the comments, just use this:</p>
<p><code>&lt;a href="&lt;?php comments_link(); ?&gt;"&gt;&lt;?php comments_number("No comments", "1 comment", "% comments"); ?&gt;&lt;/a&gt;</code></p>
<p>It <em>should</em> be obvious where that goes. It&#8217;s usually before the <code>&lt;?php endforeach; ?&gt;</code>, and after the <code>&lt;?php the_content(); ?&gt;</code></p>
<p>Hope that&#8217;s what you wanted. In case you need it in future, the <a href="http://codex.wordpress.org/" rel="nofollow">WordPress Codex</a>&#8216;s <a href="http://codex.wordpress.org/Blog_Design_and_Layout" rel="nofollow">Design and Layout</a> section, particularly the <a href="http://codex.wordpress.org/Template_Tags" rel="nofollow">Template tags</a> bit, is excellent for stuff like this <img src='http://blog.jorygeerts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Nice theme BTW, it looks good. Nice and easy to read aswell <img src='http://blog.jorygeerts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Slack</title>
		<link>http://blog.jorygeerts.com/2006/10/26/modern-horrors-skinning-wordpress/comment-page-1/#comment-32</link>
		<dc:creator>Slack</dc:creator>
		<pubDate>Sun, 29 Oct 2006 12:43:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jorygeerts.com/2006/10/26/modern-horrors-skinning-wordpress/#comment-32</guid>
		<description>At least its different from the default theme =P</description>
		<content:encoded><![CDATA[<p>At least its different from the default theme =P</p>
]]></content:encoded>
	</item>
</channel>
</rss>
