<?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: A plugin for adding the post date to wp_get_archives</title>
	<atom:link href="http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/</link>
	<description>Ardamis is a blog about web development and technology in general.</description>
	<lastBuildDate>Fri, 03 Feb 2012 03:06:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Leho Kraav</title>
		<link>http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-43882</link>
		<dc:creator>Leho Kraav</dc:creator>
		<pubDate>Wed, 08 Dec 2010 16:24:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-43882</guid>
		<description>here&#039;s a simple patch to get configurable dates:

&lt;code&gt;Index: ardamis-dateme.php
===================================================================
--- ardamis-dateme.php	(revision 61)
+++ ardamis-dateme.php	(working copy)
@@ -33,7 +33,7 @@
 	else
 		parse_str($args, $r);
 
-	$defaults = array(&#039;type&#039; =&gt; &#039;postbypost&#039;, &#039;limit&#039; =&gt; &#039;&#039;, &#039;format&#039; =&gt; &#039;html&#039;, &#039;before&#039; =&gt; &#039;&#039;, &#039;after&#039; =&gt; &#039;&#039;, &#039;show_post_count&#039; =&gt; false, &#039;show_post_date&#039; =&gt; true);
+	$defaults = array(&#039;type&#039; =&gt; &#039;postbypost&#039;, &#039;limit&#039; =&gt; &#039;&#039;, &#039;format&#039; =&gt; &#039;html&#039;, &#039;before&#039; =&gt; &#039;&#039;, &#039;after&#039; =&gt; &#039;&#039;, &#039;show_post_count&#039; =&gt; false, &#039;show_post_date&#039; =&gt; true, &#039;ard_date_format&#039; =&gt; &#039;m/d/Y&#039;);
 	$r = array_merge($defaults, $r);
 	extract($r);
 
@@ -80,7 +80,7 @@
 				if ( $arcresult-&gt;post_date != &#039;0000-00-00 00:00:00&#039; ) {
 					$url  = get_permalink($arcresult);
 					$arc_title = $arcresult-&gt;post_title;
-					$arc_date = date(&#039;m/d/Y&#039;, strtotime($arcresult-&gt;post_date));  // new
+					$arc_date = date($ard_date_format, strtotime($arcresult-&gt;post_date));  // new
 					if ( $show_post_date )  // new
 						$before = $beforebefore . &#039;&#039; . $arc_date . &#039;&#039;;  // new
 					if ( $arc_title )
@@ -94,4 +94,4 @@
 	}
 }
 
-?&gt;
\ No newline at end of file
+?&gt;
&lt;/code&gt;

i should also note that this comment timeout system on ranks very high on the annoying list.</description>
		<content:encoded><![CDATA[<p>here&#8217;s a simple patch to get configurable dates:</p>
<p><code>Index: ardamis-dateme.php<br />
===================================================================<br />
--- ardamis-dateme.php	(revision 61)<br />
+++ ardamis-dateme.php	(working copy)<br />
@@ -33,7 +33,7 @@<br />
 	else<br />
 		parse_str($args, $r);</p>
<p>-	$defaults = array('type' =&gt; 'postbypost', 'limit' =&gt; '', 'format' =&gt; 'html', 'before' =&gt; '', 'after' =&gt; '', 'show_post_count' =&gt; false, 'show_post_date' =&gt; true);<br />
+	$defaults = array('type' =&gt; 'postbypost', 'limit' =&gt; '', 'format' =&gt; 'html', 'before' =&gt; '', 'after' =&gt; '', 'show_post_count' =&gt; false, 'show_post_date' =&gt; true, 'ard_date_format' =&gt; 'm/d/Y');<br />
 	$r = array_merge($defaults, $r);<br />
 	extract($r);</p>
<p>@@ -80,7 +80,7 @@<br />
 				if ( $arcresult-&gt;post_date != '0000-00-00 00:00:00' ) {<br />
 					$url  = get_permalink($arcresult);<br />
 					$arc_title = $arcresult-&gt;post_title;<br />
-					$arc_date = date('m/d/Y', strtotime($arcresult-&gt;post_date));  // new<br />
+					$arc_date = date($ard_date_format, strtotime($arcresult-&gt;post_date));  // new<br />
 					if ( $show_post_date )  // new<br />
 						$before = $beforebefore . '' . $arc_date . '';  // new<br />
 					if ( $arc_title )<br />
@@ -94,4 +94,4 @@<br />
 	}<br />
 }</p>
<p>-?&gt;<br />
\ No newline at end of file<br />
+?&gt;<br />
</code></p>
<p>i should also note that this comment timeout system on ranks very high on the annoying list.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-43843</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Thu, 02 Dec 2010 03:18:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-43843</guid>
		<description>I second number 21&#039;s question...

Instead of adding the post date to the wp_get_archives list, how can I add the author name for that particular archived post instead? So, author name: post title.

e.g. Mick Brown: My First Post

Any help would be much appreciated!</description>
		<content:encoded><![CDATA[<p>I second number 21&#8242;s question&#8230;</p>
<p>Instead of adding the post date to the wp_get_archives list, how can I add the author name for that particular archived post instead? So, author name: post title.</p>
<p>e.g. Mick Brown: My First Post</p>
<p>Any help would be much appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joey Kirk</title>
		<link>http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-32446</link>
		<dc:creator>Joey Kirk</dc:creator>
		<pubDate>Wed, 28 Apr 2010 02:54:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-32446</guid>
		<description>How would I hide the most recent blog post? I know the offset=1 works for ?php $myposts, but can it work in here too?</description>
		<content:encoded><![CDATA[<p>How would I hide the most recent blog post? I know the offset=1 works for ?php $myposts, but can it work in here too?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pickle</title>
		<link>http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-26784</link>
		<dc:creator>Pickle</dc:creator>
		<pubDate>Fri, 29 Jan 2010 08:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-26784</guid>
		<description>Never mind, I see that I can add a space right after the date format, like this:
$arc_date = date(&#039;m/y &#039;, strtotime($arcresult-&gt;post_date));  // new</description>
		<content:encoded><![CDATA[<p>Never mind, I see that I can add a space right after the date format, like this:<br />
$arc_date = date(&#8216;m/y &#8216;, strtotime($arcresult-&gt;post_date));  // new</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pickle</title>
		<link>http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-26783</link>
		<dc:creator>Pickle</dc:creator>
		<pubDate>Fri, 29 Jan 2010 07:29:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-26783</guid>
		<description>Hi this is just the archives styling I was looking for, but when I set it up there is no space between the date and the post title. Does anyone know if this is something I can fix by editing the plugin? Or my stylesheet perhaps? Thanks for the plugin and the help.</description>
		<content:encoded><![CDATA[<p>Hi this is just the archives styling I was looking for, but when I set it up there is no space between the date and the post title. Does anyone know if this is something I can fix by editing the plugin? Or my stylesheet perhaps? Thanks for the plugin and the help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anon</title>
		<link>http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-25813</link>
		<dc:creator>Anon</dc:creator>
		<pubDate>Sat, 09 Jan 2010 00:17:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-25813</guid>
		<description>How do I display the author name as well?</description>
		<content:encoded><![CDATA[<p>How do I display the author name as well?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webfairy</title>
		<link>http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-25615</link>
		<dc:creator>webfairy</dc:creator>
		<pubDate>Sun, 03 Jan 2010 18:31:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-25615</guid>
		<description>Hi, is it possible to display the date in a different language (French for example)?</description>
		<content:encoded><![CDATA[<p>Hi, is it possible to display the date in a different language (French for example)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-21841</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Thu, 08 Oct 2009 23:30:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-21841</guid>
		<description>Is it possible to style the month or day and independent of each other ?</description>
		<content:encoded><![CDATA[<p>Is it possible to style the month or day and independent of each other ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kilian</title>
		<link>http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-20693</link>
		<dc:creator>kilian</dc:creator>
		<pubDate>Mon, 21 Sep 2009 20:59:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-20693</guid>
		<description>Thanks. Changed to the after position and switched out span with p for my needs, but awesome!</description>
		<content:encoded><![CDATA[<p>Thanks. Changed to the after position and switched out span with p for my needs, but awesome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ardamis</title>
		<link>http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-18659</link>
		<dc:creator>ardamis</dc:creator>
		<pubDate>Tue, 28 Jul 2009 15:42:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.ardamis.com/2007/06/25/adding-the-post-date-to-wp_get_archives/#comment-18659</guid>
		<description>Getting the number of comments would require a separate query to the database.  This plugin merely changes the behavior of the wp_get_archives function to report data already available to the function.

Not that it couldn&#039;t be done, but I&#039;m not going to do it right now.  Maybe someone will pick up on this and add that functionality, though.</description>
		<content:encoded><![CDATA[<p>Getting the number of comments would require a separate query to the database.  This plugin merely changes the behavior of the wp_get_archives function to report data already available to the function.</p>
<p>Not that it couldn&#8217;t be done, but I&#8217;m not going to do it right now.  Maybe someone will pick up on this and add that functionality, though.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

