<?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: Random Post Order in WordPress</title>
	<atom:link href="http://www.specialops.co.nz/blog/random-post-order-in-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.specialops.co.nz/blog/random-post-order-in-wordpress/</link>
	<description>Web development, design, print &#38; video in Auckland, New Zealand</description>
	<lastBuildDate>Sat, 12 Nov 2011 20:58:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Danny</title>
		<link>http://www.specialops.co.nz/blog/random-post-order-in-wordpress/comment-page-1/#comment-598</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Tue, 11 Oct 2011 20:21:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.specialops.co.nz/?p=738#comment-598</guid>
		<description>Hi, thanks for the post.  I&#039;m looking at a way of randomising the posts to my site as it&#039;ll give some airing to the older posts.  Thanks for the coding, but I&#039;m not sure where to put it.  

Can anyone help?

Cheers,

Danny</description>
		<content:encoded><![CDATA[<p>Hi, thanks for the post.  I&#8217;m looking at a way of randomising the posts to my site as it&#8217;ll give some airing to the older posts.  Thanks for the coding, but I&#8217;m not sure where to put it.  </p>
<p>Can anyone help?</p>
<p>Cheers,</p>
<p>Danny</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fox</title>
		<link>http://www.specialops.co.nz/blog/random-post-order-in-wordpress/comment-page-1/#comment-594</link>
		<dc:creator>Fox</dc:creator>
		<pubDate>Fri, 16 Sep 2011 18:05:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.specialops.co.nz/?p=738#comment-594</guid>
		<description>Is there a way to then sort the randomly-displayed posts? For example, I have a query running that pulls posts from a category and displays 2 of them randomly, similar to your code above. But within that query, I want the random posts to display in descending order. So that no matter which 2 posts are displayed, the newest is always first. Right now, it&#039;s pulling the posts from the specified category and displaying them randomly (good) but sometimes the newer one is on bottom (bad). Thanks for your help.</description>
		<content:encoded><![CDATA[<p>Is there a way to then sort the randomly-displayed posts? For example, I have a query running that pulls posts from a category and displays 2 of them randomly, similar to your code above. But within that query, I want the random posts to display in descending order. So that no matter which 2 posts are displayed, the newest is always first. Right now, it&#8217;s pulling the posts from the specified category and displaying them randomly (good) but sometimes the newer one is on bottom (bad). Thanks for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.specialops.co.nz/blog/random-post-order-in-wordpress/comment-page-1/#comment-576</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Sat, 11 Jun 2011 14:22:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.specialops.co.nz/?p=738#comment-576</guid>
		<description>Here is the easiest way to sort any post type &lt;a href=&quot;http://www.nsp-code.com/wordpress-plugins/post-types-order/&quot; rel=&quot;nofollow&quot;&gt;Post Types Order&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Here is the easiest way to sort any post type <a href="http://www.nsp-code.com/wordpress-plugins/post-types-order/" rel="nofollow">Post Types Order</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Breno</title>
		<link>http://www.specialops.co.nz/blog/random-post-order-in-wordpress/comment-page-1/#comment-388</link>
		<dc:creator>Breno</dc:creator>
		<pubDate>Sat, 25 Sep 2010 18:26:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.specialops.co.nz/?p=738#comment-388</guid>
		<description>Nice article man. As PPC Ad, exactly what I was looking for. However, guess I´m rookier than he(she?) and don´t know where to place this code.

The site is trocasvale.co.cc , Im using the Fullscreen theme and I want those posts randomized. They´re organized by date and that has to change.

Pretty sure that has something to do with this section of home.php:

div class=&quot;home-thumbs&quot;&gt;
?php $home_query = new WP_Query(&quot;cat=&amp;showposts=8&quot;); $i = 0; ?&gt;
ul class=&quot;thumbs&quot;&gt;
	?php while ($home_query-&gt;have_posts()) : $home_query-&gt;the_post();
	    $do_not_duplicate = $post-&gt;ID; $i++; ?&gt;


but I´m still learning.. can you help me, please?

regards</description>
		<content:encoded><![CDATA[<p>Nice article man. As PPC Ad, exactly what I was looking for. However, guess I´m rookier than he(she?) and don´t know where to place this code.</p>
<p>The site is trocasvale.co.cc , Im using the Fullscreen theme and I want those posts randomized. They´re organized by date and that has to change.</p>
<p>Pretty sure that has something to do with this section of home.php:</p>
<p>div class=&#8221;home-thumbs&#8221;&gt;<br />
?php $home_query = new WP_Query(&#8220;cat=&amp;showposts=8&#8243;); $i = 0; ?&gt;<br />
ul class=&#8221;thumbs&#8221;&gt;<br />
	?php while ($home_query-&gt;have_posts()) : $home_query-&gt;the_post();<br />
	    $do_not_duplicate = $post-&gt;ID; $i++; ?&gt;</p>
<p>but I´m still learning.. can you help me, please?</p>
<p>regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PPC Ad</title>
		<link>http://www.specialops.co.nz/blog/random-post-order-in-wordpress/comment-page-1/#comment-380</link>
		<dc:creator>PPC Ad</dc:creator>
		<pubDate>Sun, 15 Aug 2010 07:21:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.specialops.co.nz/?p=738#comment-380</guid>
		<description>Hello everyone, thanx a lot for this article .. This was exactly what I was looking for.</description>
		<content:encoded><![CDATA[<p>Hello everyone, thanx a lot for this article .. This was exactly what I was looking for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Penningtons Website Build by Special Operations &#124; Special Operations</title>
		<link>http://www.specialops.co.nz/blog/random-post-order-in-wordpress/comment-page-1/#comment-364</link>
		<dc:creator>The Penningtons Website Build by Special Operations &#124; Special Operations</dc:creator>
		<pubDate>Sun, 18 Apr 2010 20:50:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.specialops.co.nz/?p=738#comment-364</guid>
		<description>[...] be able to be updated, and so possibly the world’s easiest to use Content Management System—WordPress—was deployed—with a considerable degree of custom coding behind the [...]</description>
		<content:encoded><![CDATA[<p>[...] be able to be updated, and so possibly the world’s easiest to use Content Management System—WordPress—was deployed—with a considerable degree of custom coding behind the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Gillespie</title>
		<link>http://www.specialops.co.nz/blog/random-post-order-in-wordpress/comment-page-1/#comment-325</link>
		<dc:creator>John Gillespie</dc:creator>
		<pubDate>Mon, 04 Jan 2010 02:15:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.specialops.co.nz/?p=738#comment-325</guid>
		<description>I hear ya Jonathan...

Then again, while it may not stop factories being moved to China and websites outsourced to India, I strongly believe that, a little like karma, you get what you pay for in this world. Cut too many corners, and something will eventually fall off the back of your jQuery rounded div. Intangible though they sometimes may be, qualities like reliability, dependability, originality and creativity all come with an appropriate price.
.-= John Gillespie´s last post: &lt;a href=&quot;http://www.specialops.co.nz/blog/random-post-order-in-wordpress/&quot; rel=&quot;nofollow&quot;&gt;Random Post Order in WordPress&lt;/a&gt; =-.</description>
		<content:encoded><![CDATA[<p>I hear ya Jonathan&#8230;</p>
<p>Then again, while it may not stop factories being moved to China and websites outsourced to India, I strongly believe that, a little like karma, you get what you pay for in this world. Cut too many corners, and something will eventually fall off the back of your jQuery rounded div. Intangible though they sometimes may be, qualities like reliability, dependability, originality and creativity all come with an appropriate price.<br />
.-= John Gillespie´s last post: <a href="http://www.specialops.co.nz/blog/random-post-order-in-wordpress/" rel="nofollow">Random Post Order in WordPress</a> =-.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Nicol</title>
		<link>http://www.specialops.co.nz/blog/random-post-order-in-wordpress/comment-page-1/#comment-324</link>
		<dc:creator>Jonathan Nicol</dc:creator>
		<pubDate>Sat, 02 Jan 2010 20:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.specialops.co.nz/?p=738#comment-324</guid>
		<description>&lt;blockquote&gt;computerisation [...] has decreased respect for the creative process, and the amount of time that good, original work actually takes.&lt;/blockquote&gt;

The sad thing is that web designers are (in part) responsible for fostering this notion. There seems to be an inexhaustible supply of young web designers and developers happy to bang out a website for a few bucks, which does nothing to educate their clients about the value of considered, relevant, and well executed design solutions. Instead, web designers become simply suppliers of a service, the process of commissioning a website reduced to a financial transaction, like having some photocopying done.
.-= Jonathan Nicol´s last post: &lt;a href=&quot;http://feedproxy.google.com/~r/PixelAcres/~3/BLGIRybXwqE/&quot; rel=&quot;nofollow&quot;&gt;Subversion for web development: Part 3&lt;/a&gt; =-.</description>
		<content:encoded><![CDATA[<blockquote><p>computerisation [...] has decreased respect for the creative process, and the amount of time that good, original work actually takes.</p></blockquote>
<p>The sad thing is that web designers are (in part) responsible for fostering this notion. There seems to be an inexhaustible supply of young web designers and developers happy to bang out a website for a few bucks, which does nothing to educate their clients about the value of considered, relevant, and well executed design solutions. Instead, web designers become simply suppliers of a service, the process of commissioning a website reduced to a financial transaction, like having some photocopying done.<br />
.-= Jonathan Nicol´s last post: <a href="http://feedproxy.google.com/~r/PixelAcres/~3/BLGIRybXwqE/" rel="nofollow">Subversion for web development: Part 3</a> =-.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Gillespie</title>
		<link>http://www.specialops.co.nz/blog/random-post-order-in-wordpress/comment-page-1/#comment-323</link>
		<dc:creator>John Gillespie</dc:creator>
		<pubDate>Sat, 02 Jan 2010 09:25:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.specialops.co.nz/?p=738#comment-323</guid>
		<description>While slightly tangential to the topic of web development, but talking of ye olde 20th Century all the same, I used to have a colleague who back in older days had been a founding partner of a well known New Zealand design company, and he bemoaned how computerisation—while admittedly increasing efficiency to some degree, and providing me with a 9–5 living—has decreased respect for the creative process, and the amount of time that good, original work actually takes. 

Increasingly, there is a trend that sees people, able to be self-declared Google and Wikipedia &quot;experts&quot;, blind to the value of things that take more than a web browser or copy and paste to be brought into existence...
.-= John Gillespie´s last post: &lt;a href=&quot;http://www.specialops.co.nz/blog/random-post-order-in-wordpress/&quot; rel=&quot;nofollow&quot;&gt;Random Post Order in WordPress&lt;/a&gt; =-.</description>
		<content:encoded><![CDATA[<p>While slightly tangential to the topic of web development, but talking of ye olde 20th Century all the same, I used to have a colleague who back in older days had been a founding partner of a well known New Zealand design company, and he bemoaned how computerisation—while admittedly increasing efficiency to some degree, and providing me with a 9–5 living—has decreased respect for the creative process, and the amount of time that good, original work actually takes. </p>
<p>Increasingly, there is a trend that sees people, able to be self-declared Google and Wikipedia &#8220;experts&#8221;, blind to the value of things that take more than a web browser or copy and paste to be brought into existence&#8230;<br />
.-= John Gillespie´s last post: <a href="http://www.specialops.co.nz/blog/random-post-order-in-wordpress/" rel="nofollow">Random Post Order in WordPress</a> =-.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Nicol</title>
		<link>http://www.specialops.co.nz/blog/random-post-order-in-wordpress/comment-page-1/#comment-321</link>
		<dc:creator>Jonathan Nicol</dc:creator>
		<pubDate>Wed, 30 Dec 2009 02:29:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.specialops.co.nz/?p=738#comment-321</guid>
		<description>&lt;blockquote&gt;…this won’t cost me anything extra will it? I mean, after all, you can just Ctrl-Click your fingers and make it happen?&lt;/blockquote&gt;

This rings so very, very true. I remember the days when clients were grateful just to have a website. Now they expect all the functionality of Facebook, Gmail and Flickr rolled into one. And they want it yesterday. It&#039;s almost enough to make me nostalgic for the the 20th Century!
.-= Jonathan Nicol´s last post: &lt;a href=&quot;http://feedproxy.google.com/~r/PixelAcres/~3/BLGIRybXwqE/&quot; rel=&quot;nofollow&quot;&gt;Subversion for web development: Part 3&lt;/a&gt; =-.</description>
		<content:encoded><![CDATA[<blockquote><p>…this won’t cost me anything extra will it? I mean, after all, you can just Ctrl-Click your fingers and make it happen?</p></blockquote>
<p>This rings so very, very true. I remember the days when clients were grateful just to have a website. Now they expect all the functionality of Facebook, Gmail and Flickr rolled into one. And they want it yesterday. It&#8217;s almost enough to make me nostalgic for the the 20th Century!<br />
.-= Jonathan Nicol´s last post: <a href="http://feedproxy.google.com/~r/PixelAcres/~3/BLGIRybXwqE/" rel="nofollow">Subversion for web development: Part 3</a> =-.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

