<?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: How to Make a WordPress Archives Page</title>
	<atom:link href="http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/</link>
	<description>Imagination is more important than knowledge</description>
	<lastBuildDate>Wed, 23 Jun 2010 10:46:04 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: db</title>
		<link>http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/comment-page-1/#comment-69558</link>
		<dc:creator>db</dc:creator>
		<pubDate>Sat, 19 Jun 2010 01:54:31 +0000</pubDate>
		<guid isPermaLink="false">http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/#comment-69558</guid>
		<description>*blush*

Such a nice thing to say, from someone who&#039;s never seen my face.</description>
		<content:encoded><![CDATA[<p>*blush*</p>
<p>Such a nice thing to say, from someone who&#8217;s never seen my face.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: timberland custom booots</title>
		<link>http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/comment-page-1/#comment-69527</link>
		<dc:creator>timberland custom booots</dc:creator>
		<pubDate>Tue, 15 Jun 2010 23:45:52 +0000</pubDate>
		<guid isPermaLink="false">http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/#comment-69527</guid>
		<description>You have a kind face, especially your eyes. I think I can see your soul bouncing around in there!</description>
		<content:encoded><![CDATA[<p>You have a kind face, especially your eyes. I think I can see your soul bouncing around in there!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Chambers</title>
		<link>http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/comment-page-1/#comment-62832</link>
		<dc:creator>David Chambers</dc:creator>
		<pubDate>Tue, 16 Jun 2009 06:43:12 +0000</pubDate>
		<guid isPermaLink="false">http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/#comment-62832</guid>
		<description>Hi Dave. I’ve written a PHP snippet to do away with the Clean Archives Reloaded plugin. People may find this useful:

&lt;?php   global $post;
        $myposts = get_posts(&#039;numberposts=-1&#039;);
        $month_and_year = &#039;&#039;;
        if ($myposts) : ?&gt;
            &lt;ul class=&quot;archives&quot;&gt;
                &lt;li&gt;
&lt;?php       foreach ($myposts as $post) :
                $date = get_the_time(&#039;j&#039;);
                if (get_the_time(&#039;F Y&#039;) != $month_and_year) : // we need to begin a new month...
                    if ($month_and_year) : // by first ending the previous month if applicable... ?&gt;
                    &lt;/ul&gt;
                &lt;/li&gt;
                &lt;li&gt;
&lt;?php               endif;
                    $month_and_year = get_the_time(&#039;F Y&#039;); ?&gt;
                    &lt;h3&gt;&lt;?php echo $month_and_year; ?&gt;&lt;/h3&gt;
                    &lt;ul&gt;
&lt;?php           endif; ?&gt;
                        &lt;li class=&quot;day-&lt;?php echo $date; ?&gt;&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
&lt;?php       endforeach; ?&gt;
                    &lt;/ul&gt;
                &lt;/li&gt;
            &lt;/ul&gt;
&lt;?php   endif; ?&gt;

See it in action at http://davidchambersdesign.com/archives/.</description>
		<content:encoded><![CDATA[<p>Hi Dave. I’ve written a PHP snippet to do away with the Clean Archives Reloaded plugin. People may find this useful:</p>
<p>&lt;?php   global $post;<br />
        $myposts = get_posts(&#8217;numberposts=-1&#8242;);<br />
        $month_and_year = &#8221;;<br />
        if ($myposts) : ?&gt;<br />
            &lt;ul class=&#8221;archives&#8221;&gt;<br />
                &lt;li&gt;<br />
&lt;?php       foreach ($myposts as $post) :<br />
                $date = get_the_time(&#8217;j');<br />
                if (get_the_time(&#8217;F Y&#8217;) != $month_and_year) : // we need to begin a new month&#8230;<br />
                    if ($month_and_year) : // by first ending the previous month if applicable&#8230; ?&gt;<br />
                    &lt;/ul&gt;<br />
                &lt;/li&gt;<br />
                &lt;li&gt;<br />
&lt;?php               endif;<br />
                    $month_and_year = get_the_time(&#8217;F Y&#8217;); ?&gt;<br />
                    &lt;h3&gt;&lt;?php echo $month_and_year; ?&gt;&lt;/h3&gt;<br />
                    &lt;ul&gt;<br />
&lt;?php           endif; ?&gt;<br />
                        &lt;li class=&#8221;day-&lt;?php echo $date; ?&gt;&#8221;&gt;&lt;a href=&#8221;&lt;?php the_permalink(); ?&gt;&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;?php       endforeach; ?&gt;<br />
                    &lt;/ul&gt;<br />
                &lt;/li&gt;<br />
            &lt;/ul&gt;<br />
&lt;?php   endif; ?&gt;</p>
<p>See it in action at <a href="http://davidchambersdesign.com/archives/." rel="nofollow">http://davidchambersdesign.com/archives/.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Chambers</title>
		<link>http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/comment-page-1/#comment-61300</link>
		<dc:creator>David Chambers</dc:creator>
		<pubDate>Sat, 02 May 2009 15:43:21 +0000</pubDate>
		<guid isPermaLink="false">http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/#comment-61300</guid>
		<description>Useful post, Dave. Nearly four years old and still relevant, that&#039;s impressive!</description>
		<content:encoded><![CDATA[<p>Useful post, Dave. Nearly four years old and still relevant, that&#8217;s impressive!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: db</title>
		<link>http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/comment-page-1/#comment-54420</link>
		<dc:creator>db</dc:creator>
		<pubDate>Fri, 05 Sep 2008 23:58:49 +0000</pubDate>
		<guid isPermaLink="false">http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/#comment-54420</guid>
		<description>glen: Are you sure you followed the instructions as above? My understanding is that the Page Template option does not appear until you put at least one file in your theme folder with the &quot;Template Name&quot; line (as in the example).</description>
		<content:encoded><![CDATA[<p>glen: Are you sure you followed the instructions as above? My understanding is that the Page Template option does not appear until you put at least one file in your theme folder with the &#8220;Template Name&#8221; line (as in the example).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: glen stadig</title>
		<link>http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/comment-page-1/#comment-54399</link>
		<dc:creator>glen stadig</dc:creator>
		<pubDate>Fri, 05 Sep 2008 12:11:51 +0000</pubDate>
		<guid isPermaLink="false">http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/#comment-54399</guid>
		<description>I tried as you suggest but under my &quot;New Page&quot; window i don&#039;t see a page template option i have expanded all the windows and looked in custom fields, nothing...
What do i do?</description>
		<content:encoded><![CDATA[<p>I tried as you suggest but under my &#8220;New Page&#8221; window i don&#8217;t see a page template option i have expanded all the windows and looked in custom fields, nothing&#8230;<br />
What do i do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peyo</title>
		<link>http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/comment-page-1/#comment-33719</link>
		<dc:creator>Peyo</dc:creator>
		<pubDate>Wed, 07 Nov 2007 19:42:01 +0000</pubDate>
		<guid isPermaLink="false">http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/#comment-33719</guid>
		<description>Thanks for the info!</description>
		<content:encoded><![CDATA[<p>Thanks for the info!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: db</title>
		<link>http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/comment-page-1/#comment-21592</link>
		<dc:creator>db</dc:creator>
		<pubDate>Tue, 15 May 2007 08:15:06 +0000</pubDate>
		<guid isPermaLink="false">http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/#comment-21592</guid>
		<description>Thank you!</description>
		<content:encoded><![CDATA[<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lohness</title>
		<link>http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/comment-page-1/#comment-21398</link>
		<dc:creator>Lohness</dc:creator>
		<pubDate>Sat, 12 May 2007 21:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/#comment-21398</guid>
		<description>Your site is perfect!</description>
		<content:encoded><![CDATA[<p>Your site is perfect!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maxime Rousseau &#187; Blog Archive &#187; Creating Integral Wordpress Archives</title>
		<link>http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/comment-page-1/#comment-18343</link>
		<dc:creator>Maxime Rousseau &#187; Blog Archive &#187; Creating Integral Wordpress Archives</dc:creator>
		<pubDate>Tue, 20 Feb 2007 23:30:55 +0000</pubDate>
		<guid isPermaLink="false">http://db.rambleschmack.net/blog/2005/06/28/how-to-make-a-wordpress-archives-page/#comment-18343</guid>
		<description>[...] How to Make a WordPress Archives Page &#124; db.rambleschmack.net [...]</description>
		<content:encoded><![CDATA[<p>[...] How to Make a WordPress Archives Page | db.rambleschmack.net [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
