<?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 Events List</title>
	<atom:link href="http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/</link>
	<description>Better Looking Blogs Grow Faster</description>
	<lastBuildDate>Sat, 11 Feb 2012 20:09:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Josh</title>
		<link>http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-34380</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Thu, 19 Jan 2012 17:23:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-34380</guid>
		<description>I&#039;ve also had great success with this code, but everything seems to have gone haywire in 2012. Events are not appearing and are no longer sorting properly. Any suggestions?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve also had great success with this code, but everything seems to have gone haywire in 2012. Events are not appearing and are no longer sorting properly. Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zach Fort Myers</title>
		<link>http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-33793</link>
		<dc:creator>Zach Fort Myers</dc:creator>
		<pubDate>Thu, 22 Dec 2011 20:48:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-33793</guid>
		<description>This is an awesome tutorial. I&#039;ve used some plugins, but found and have used this instead - always like to code things myself if I find a guide like this. 

Thanks again.</description>
		<content:encoded><![CDATA[<p>This is an awesome tutorial. I&#8217;ve used some plugins, but found and have used this instead &#8211; always like to code things myself if I find a guide like this. </p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alvaro</title>
		<link>http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-33628</link>
		<dc:creator>Alvaro</dc:creator>
		<pubDate>Thu, 15 Dec 2011 11:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-33628</guid>
		<description>thank you for the great post, I am developing  an event plugin for my client, everything is working fine except the list is not showing event from next year that is 2012.
My query is

query_posts(&#039;showposts=20&amp;post_type=&gt;events&amp;meta_key=Date&amp;meta_compare=&gt;=&amp;meta_value=&#039; . $todaysDate . &#039;&amp;orderby=meta_value&amp;order=ASC&#039;); ?&gt;

It is showing all the upcoming post from this year that is 2011 but not from 2012, on January  there is a event which should show.</description>
		<content:encoded><![CDATA[<p>thank you for the great post, I am developing  an event plugin for my client, everything is working fine except the list is not showing event from next year that is 2012.<br />
My query is</p>
<p>query_posts(&#8216;showposts=20&amp;post_type=&gt;events&amp;meta_key=Date&amp;meta_compare=&gt;=&amp;meta_value=&#8217; . $todaysDate . &#8216;&amp;orderby=meta_value&amp;order=ASC&#8217;); ?&gt;</p>
<p>It is showing all the upcoming post from this year that is 2011 but not from 2012, on January  there is a event which should show.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marina</title>
		<link>http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-32455</link>
		<dc:creator>Marina</dc:creator>
		<pubDate>Mon, 26 Sep 2011 07:53:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-32455</guid>
		<description>We have online event registration system that can be integrated into WordPress. Is anyone interested using it for WordPress event? Thank you.</description>
		<content:encoded><![CDATA[<p>We have online event registration system that can be integrated into WordPress. Is anyone interested using it for WordPress event? Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-31388</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Thu, 18 Aug 2011 17:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-31388</guid>
		<description>The quick and easy solution is to simply reverse the arrow in the compare section of the code:

so change this:
meta_compare=&gt;=&amp;meta_value

to this:
meta_compare=&lt;=&amp;meta_value

This will show all the posts BEFORE the current date.

Here&#039;s the full code for showing past events:


 
&lt;?php query_posts(&#039;showposts=20&amp;category_name=events&amp;meta_key=Date&amp;meta_compare=</description>
		<content:encoded><![CDATA[<p>The quick and easy solution is to simply reverse the arrow in the compare section of the code:</p>
<p>so change this:<br />
meta_compare=&gt;=&amp;meta_value</p>
<p>to this:<br />
meta_compare=&lt;=&amp;meta_value</p>
<p>This will show all the posts BEFORE the current date.</p>
<p>Here&#039;s the full code for showing past events:</p>
<p>&lt;?php query_posts(&#039;showposts=20&amp;category_name=events&amp;meta_key=Date&amp;meta_compare=</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roger</title>
		<link>http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-30546</link>
		<dc:creator>Roger</dc:creator>
		<pubDate>Sat, 09 Jul 2011 09:56:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-30546</guid>
		<description>hey nate,

i had the same problem, the updated events list code at the link below will help you out.

http://www.problogdesign.com/wordpress/an-updated-wordpress-events-list/
if you need any more help feel free to drop me an email rogershafi01[at]gmail.com</description>
		<content:encoded><![CDATA[<p>hey nate,</p>
<p>i had the same problem, the updated events list code at the link below will help you out.</p>
<p><a href="http://www.problogdesign.com/wordpress/an-updated-wordpress-events-list/" rel="nofollow">http://www.problogdesign.com/wordpress/an-updated-wordpress-events-list/</a><br />
if you need any more help feel free to drop me an email rogershafi01[at]gmail.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nate</title>
		<link>http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-30541</link>
		<dc:creator>Nate</dc:creator>
		<pubDate>Fri, 08 Jul 2011 20:54:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-30541</guid>
		<description>Hi Michael,

Any ideas on how to format it for European style dates? I changed the date in wordpress settings, and in the &#039;get date&#039; part of the code, but still it orders it as it would for the US.

Love the simplicity of this,

ta

nate</description>
		<content:encoded><![CDATA[<p>Hi Michael,</p>
<p>Any ideas on how to format it for European style dates? I changed the date in wordpress settings, and in the &#8216;get date&#8217; part of the code, but still it orders it as it would for the US.</p>
<p>Love the simplicity of this,</p>
<p>ta</p>
<p>nate</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: listbuilding234</title>
		<link>http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-30394</link>
		<dc:creator>listbuilding234</dc:creator>
		<pubDate>Tue, 05 Jul 2011 15:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-30394</guid>
		<description>i am a blogger everyday i browse different types of articles to get lots of new tips while i was browsing,i found ur blog your article is really awesome.Thanks for sharing such nice article here.i also want to share valuable how to build a list tips.</description>
		<content:encoded><![CDATA[<p>i am a blogger everyday i browse different types of articles to get lots of new tips while i was browsing,i found ur blog your article is really awesome.Thanks for sharing such nice article here.i also want to share valuable how to build a list tips.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francesco Cataldo</title>
		<link>http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-30193</link>
		<dc:creator>Francesco Cataldo</dc:creator>
		<pubDate>Wed, 29 Jun 2011 17:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-30193</guid>
		<description>Hello! And first of all thank you for your work!
I&#039;m trying to create a list of events that will be the same also next year and the year after (birthdays).

I need to format the CURDATE() result to consider only DAY and MONTH while searching the posts, or next year all the events registered for 2011 will be ignored.

Maybe something like
today_noyear = &quot;CURDATE(&#039;MMDD&#039;) &quot;;
&#124;
AND STR_TO_DATE(wpostmeta.meta_value,&#039;%m%d%Y&#039;) = $today_noyear

Any suggestion?
Thanks in advance!</description>
		<content:encoded><![CDATA[<p>Hello! And first of all thank you for your work!<br />
I&#8217;m trying to create a list of events that will be the same also next year and the year after (birthdays).</p>
<p>I need to format the CURDATE() result to consider only DAY and MONTH while searching the posts, or next year all the events registered for 2011 will be ignored.</p>
<p>Maybe something like<br />
today_noyear = &#8220;CURDATE(&#8216;MMDD&#8217;) &#8220;;<br />
|<br />
AND STR_TO_DATE(wpostmeta.meta_value,&#8217;%m%d%Y&#8217;) = $today_noyear</p>
<p>Any suggestion?<br />
Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ck tang</title>
		<link>http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-28512</link>
		<dc:creator>ck tang</dc:creator>
		<pubDate>Fri, 13 May 2011 03:35:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/#comment-28512</guid>
		<description>Thanks for your post. Your detail description let me know the particulars when doing this event.
&lt;a href=&quot;//www.geotab.com/’&quot; rel=&quot;nofollow&quot;&gt;Fleet Managenet&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Thanks for your post. Your detail description let me know the particulars when doing this event.<br />
<a href="//www.geotab.com/’" rel="nofollow">Fleet Managenet</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

