<?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: Creating An Archives Page In WordPress</title>
	<atom:link href="http://blog.nerdstargamer.com/2007/creating-an-archives-page-in-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nerdstargamer.com/feeder/?FeederAction=clicked&#038;feed=Comments+on+Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fblog.nerdstargamer.com%2F2007%2Fcreating-an-archives-page-in-wordpress%2F%23comment-&#038;seed_title=Creating+An+Archives+Page+In+WordPress</link>
	<description>Mental Notes. Random thoughts. Comments on technology, games and life.</description>
	<lastBuildDate>Sat, 17 Dec 2011 09:40:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Alissa Miller</title>
		<link>http://blog.nerdstargamer.com/feeder/?FeederAction=clicked&#038;feed=Comments+on+Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fblog.nerdstargamer.com%2F2007%2Fcreating-an-archives-page-in-wordpress%2F%23comment-18327&#038;seed_title=Creating+An+Archives+Page+In+WordPress/comment-page-1/#comment-18327</link>
		<dc:creator>Alissa Miller</dc:creator>
		<pubDate>Thu, 26 Feb 2009 04:06:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nerdstargamer.com/2007/05/30/creating-an-archives-page-in-wordpress/#comment-18327</guid>
		<description>&lt;p&gt;@Bill&lt;/p&gt;

&lt;p&gt;Ok, three things here.&lt;/p&gt;

&lt;p&gt;1: It looks like you&#039;re installation of WordPress can&#039;t find the srg_clean_archives function. Whenever you get a PHP error with &quot;Call to undefined function&quot; in it, it means that the function couldn&#039;t be found.&lt;/p&gt;

&lt;p&gt;The method of calling the function I listed in this post originally is bad because in the case that the function can&#039;t be found, a fatal error will be thrown (breaking your blog).&lt;/p&gt;

&lt;p&gt;Here&#039;s what it looked like before:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&lt;div id=&quot;content&quot; class=&quot;widecolumn&quot;&gt;         
    &lt;?php srg_clean_archives(); ?&gt;             
&lt;/div&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Here&#039;s what you should change the line to:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&lt;div id=&quot;content&quot; class=&quot;widecolumn&quot;&gt;                  
    &lt;?php if (function_exists(’srg_clean_archives’)) { srg_clean_archives(); } ?&gt;             
&lt;/div&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This way your blog will not break if the function can&#039;t be found.&lt;/p&gt;

&lt;p&gt;2: Now, the question is why can&#039;t the function be found? You shouldn&#039;t have any problems with the latest version of this plugin (4.3) and WordPress 2.7.1.&lt;/p&gt;

&lt;p&gt;Have you placed the plugin in the correct location?
Have you activated the plugin?&lt;/p&gt;

&lt;p&gt;3: The version of SRG Clean Archives that I was using when this post was written was version 2.1. That was quite a while ago and since then there have been a lot of changes with the plugin. I strongly recommend you check out the plugin page and see if you like the changes that have been made. If so, forget my customizations.&lt;/p&gt;

&lt;p&gt;If you really want to do what I did with the plugin, and use an old, unsupported version of it, you can download it from this link:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://blog.nerdstargamer.com/wp-content/uploads/2007/05/clean_archives_21.tgz&quot; rel=&quot;nofollow&quot;&gt;SRG Clean Archives version 2.1&lt;/a&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@Bill</p>

<p>Ok, three things here.</p>

<p>1: It looks like you&#8217;re installation of WordPress can&#8217;t find the srg_clean_archives function. Whenever you get a PHP error with &#8220;Call to undefined function&#8221; in it, it means that the function couldn&#8217;t be found.</p>

<p>The method of calling the function I listed in this post originally is bad because in the case that the function can&#8217;t be found, a fatal error will be thrown (breaking your blog).</p>

<p>Here&#8217;s what it looked like before:</p>

<p><code>&lt;div id="content" class="widecolumn"&gt;         
    &lt;?php srg_clean_archives(); ?&gt;             
&lt;/div&gt;</code></p>

<p>Here&#8217;s what you should change the line to:</p>

<p><code>&lt;div id="content" class="widecolumn"&gt;                  
    &lt;?php if (function_exists(’srg_clean_archives’)) { srg_clean_archives(); } ?&gt;             
&lt;/div&gt;</code></p>

<p>This way your blog will not break if the function can&#8217;t be found.</p>

<p>2: Now, the question is why can&#8217;t the function be found? You shouldn&#8217;t have any problems with the latest version of this plugin (4.3) and WordPress 2.7.1.</p>

<p>Have you placed the plugin in the correct location?
Have you activated the plugin?</p>

<p>3: The version of SRG Clean Archives that I was using when this post was written was version 2.1. That was quite a while ago and since then there have been a lot of changes with the plugin. I strongly recommend you check out the plugin page and see if you like the changes that have been made. If so, forget my customizations.</p>

<p>If you really want to do what I did with the plugin, and use an old, unsupported version of it, you can download it from this link:</p>

<p><a href="http://blog.nerdstargamer.com/wp-content/uploads/2007/05/clean_archives_21.tgz" rel="nofollow">SRG Clean Archives version 2.1</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://blog.nerdstargamer.com/feeder/?FeederAction=clicked&#038;feed=Comments+on+Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fblog.nerdstargamer.com%2F2007%2Fcreating-an-archives-page-in-wordpress%2F%23comment-18324&#038;seed_title=Creating+An+Archives+Page+In+WordPress/comment-page-1/#comment-18324</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Thu, 26 Feb 2009 01:39:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nerdstargamer.com/2007/05/30/creating-an-archives-page-in-wordpress/#comment-18324</guid>
		<description>&lt;p&gt;Thanks for the instructions:  I am trying to get this working in WP 2.7.1 but get this error.  Any idea of what I am doing wrong.  I am using the lastest version of srg_clean_archives.&lt;/p&gt;

&lt;p&gt;Fatal error: Call to undefined function srg_clean_archives() in /home/freegpl/public_html/wp-content/themes/stripped-mc/archive.php on line 10&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for the instructions:  I am trying to get this working in WP 2.7.1 but get this error.  Any idea of what I am doing wrong.  I am using the lastest version of srg_clean_archives.</p>

<p>Fatal error: Call to undefined function srg_clean_archives() in /home/freegpl/public_html/wp-content/themes/stripped-mc/archive.php on line 10</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://blog.nerdstargamer.com/feeder/?FeederAction=clicked&#038;feed=Comments+on+Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fblog.nerdstargamer.com%2F2007%2Fcreating-an-archives-page-in-wordpress%2F%23comment-2209&#038;seed_title=Creating+An+Archives+Page+In+WordPress/comment-page-1/#comment-2209</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Thu, 31 May 2007 00:49:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.nerdstargamer.com/2007/05/30/creating-an-archives-page-in-wordpress/#comment-2209</guid>
		<description>&lt;p&gt;Hey Alissa.&lt;/p&gt;

&lt;p&gt;Thanks for the mention and use of my clean archives wordpress plugin. It looks really nice with your theme.&lt;/p&gt;

&lt;p&gt;As you mentioned, I coded and commented everything really nice so just about any person with little to no programming skills can use it as well as for the advanced users like yourself who like to get into things and tweak it to taste.&lt;/p&gt;

&lt;p&gt;Be sure you&#039;re running my latest release 4.0.4 as there was a few things cleaned up and also an admin area security fix.&lt;/p&gt;

&lt;p&gt;Thanks again your your use and support.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hey Alissa.</p>

<p>Thanks for the mention and use of my clean archives wordpress plugin. It looks really nice with your theme.</p>

<p>As you mentioned, I coded and commented everything really nice so just about any person with little to no programming skills can use it as well as for the advanced users like yourself who like to get into things and tweak it to taste.</p>

<p>Be sure you&#8217;re running my latest release 4.0.4 as there was a few things cleaned up and also an admin area security fix.</p>

<p>Thanks again your your use and support.</p>]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 3/11 queries in 0.354 seconds using disk: basic

Served from: blog.nerdstargamer.com @ 2012-02-10 22:17:09 -->
