<?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"
	>
<channel>
	<title>Comments on: WordPress Snippet: Complete List of Posts</title>
	<atom:link href="http://planetozh.com/blog/2008/02/wordpress-snippet-complete-list-of-posts/feed/" rel="self" type="application/rss+xml" />
	<link>http://planetozh.com/blog/2008/02/wordpress-snippet-complete-list-of-posts/?source=rss</link>
	<description>A bit of my personal life, mainly focused on my kids. A bit of code, mainly focused on Wordpress and PHP. Overall, bits of nothing in particular.</description>
	<pubDate>Sun, 07 Sep 2008 13:21:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: John A. Bilicki III</title>
		<link>http://planetozh.com/blog/2008/02/wordpress-snippet-complete-list-of-posts/#comment-50255</link>
		<dc:creator>John A. Bilicki III</dc:creator>
		<pubDate>Sat, 12 Apr 2008 02:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2008/02/wordpress-snippet-complete-list-of-posts/#comment-50255</guid>
		<description>I was adding extra quotes where it's more like an HTTP query...
[php]query_posts("posts_per_page=-1&#38;year=2008");[/php]</description>
		<content:encoded><![CDATA[<p>I was adding extra quotes where it's more like an HTTP query...</p>
<div class="igBar"><span id="lphp-1"><a href="#" onclick="javascript:showPlainTxt('php-1'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-1">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">query_posts<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">"posts_per_page=-1&amp;amp;year=2008"</span><span style="color:#006600; font-weight:bold;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John A. Bilicki III</title>
		<link>http://planetozh.com/blog/2008/02/wordpress-snippet-complete-list-of-posts/#comment-50249</link>
		<dc:creator>John A. Bilicki III</dc:creator>
		<pubDate>Fri, 11 Apr 2008 23:10:10 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2008/02/wordpress-snippet-complete-list-of-posts/#comment-50249</guid>
		<description>Lorelle, you can add categories, find the number or name of your category on a category link and then check out this page...
http://codex.wordpress.org/Template_Tags/query_posts#Category_Parameters

I'm actually having a little trouble getting all the posts to display from 2008...
[php]query_posts('posts_per_page=-1'&#38;'year=2008');[/php]

When I designate the poss_per_page alone it will display all the posts I've made since I started my blog...but that defeats the purpose of specifying a year! Ideas?</description>
		<content:encoded><![CDATA[<p>Lorelle, you can add categories, find the number or name of your category on a category link and then check out this page...<br />
<a href="http://codex.wordpress.org/Template_Tags/query_posts#Category_Parameters" rel="nofollow">http://codex.wordpress.org/Template_Tags/query_posts#Category_Parameters</a></p>
<p>I'm actually having a little trouble getting all the posts to display from 2008...</p>
<div class="igBar"><span id="lphp-2"><a href="#" onclick="javascript:showPlainTxt('php-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-2">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">query_posts<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'posts_per_page=-1'</span>&amp;amp;<span style="color:#FF0000;">'year=2008'</span><span style="color:#006600; font-weight:bold;">&#41;</span>; </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>When I designate the poss_per_page alone it will display all the posts I've made since I started my blog...but that defeats the purpose of specifying a year! Ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lorelle</title>
		<link>http://planetozh.com/blog/2008/02/wordpress-snippet-complete-list-of-posts/#comment-46700</link>
		<dc:creator>Lorelle</dc:creator>
		<pubDate>Thu, 14 Feb 2008 02:08:03 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2008/02/wordpress-snippet-complete-list-of-posts/#comment-46700</guid>
		<description>Brilliant, as usual. Is there a way to set this by category rather than date? That would be really useful.</description>
		<content:encoded><![CDATA[<p>Brilliant, as usual. Is there a way to set this by category rather than date? That would be really useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Tremblay</title>
		<link>http://planetozh.com/blog/2008/02/wordpress-snippet-complete-list-of-posts/#comment-46643</link>
		<dc:creator>Ben Tremblay</dc:creator>
		<pubDate>Tue, 12 Feb 2008 18:27:35 +0000</pubDate>
		<guid isPermaLink="false">http://planetozh.com/blog/2008/02/wordpress-snippet-complete-list-of-posts/#comment-46643</guid>
		<description>Yaa ... great example of "snippet".

You've got me redthinking my &lt;a href="http://codex.wordpress.org/User:Bentrem/TheLoopScratch" rel="nofollow"&gt;Codex page on "The Loop"&lt;/a&gt; ... granularity ... a ton of good links to a ton of good pages, but it's all too massive.

Now, a collection of snippets ordered by funtionality or hooks or something ... /that/ would be neat!</description>
		<content:encoded><![CDATA[<p>Yaa ... great example of "snippet".</p>
<p>You've got me redthinking my <a href="http://codex.wordpress.org/User:Bentrem/TheLoopScratch" rel="nofollow">Codex page on "The Loop"</a> ... granularity ... a ton of good links to a ton of good pages, but it's all too massive.</p>
<p>Now, a collection of snippets ordered by funtionality or hooks or something ... /that/ would be neat!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
