<?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: postMash</title>
	<atom:link href="http://joelstarnes.co.uk/blog/postmash/feed/" rel="self" type="application/rss+xml" />
	<link>http://joelstarnes.co.uk/blog</link>
	<description>Joel Starnes's Blog on pageMash, WordPress, GSoC...</description>
	<lastBuildDate>Tue, 11 Aug 2009 11:18:46 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Renjith</title>
		<link>http://joelstarnes.co.uk/blog/postmash/comment-page-2/#comment-3102</link>
		<dc:creator>Renjith</dc:creator>
		<pubDate>Tue, 11 Aug 2009 11:18:46 +0000</pubDate>
		<guid isPermaLink="false">http://joelstarnes.co.uk/blog/?page_id=40#comment-3102</guid>
		<description>@Jeol:
Can we use the posts_orderby filter inside the plugin so that ordering takes effect right through the site without needing to make any changes in theme code?
&lt;code&gt;
add_filter(&#039;posts_orderby&#039;, &#039;postMash_orderPosts&#039;);
&lt;/code&gt;

&lt;code&gt;
function postMash_orderPosts($orderBy) {
	global $wpdb;
	$orderBy = &quot;{$wpdb-&gt;posts}.menu_order ASC&quot;;
	return($orderBy);
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>@Jeol:<br />
Can we use the posts_orderby filter inside the plugin so that ordering takes effect right through the site without needing to make any changes in theme code?<br />
<code><br />
add_filter('posts_orderby', 'postMash_orderPosts');<br />
</code></p>
<p><code><br />
function postMash_orderPosts($orderBy) {<br />
	global $wpdb;<br />
	$orderBy = "{$wpdb-&gt;posts}.menu_order ASC";<br />
	return($orderBy);<br />
}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phpworker</title>
		<link>http://joelstarnes.co.uk/blog/postmash/comment-page-2/#comment-2637</link>
		<dc:creator>phpworker</dc:creator>
		<pubDate>Wed, 29 Jul 2009 09:44:24 +0000</pubDate>
		<guid isPermaLink="false">http://joelstarnes.co.uk/blog/?page_id=40#comment-2637</guid>
		<description>... and  IT WORKS on WP 2.8.2 :D</description>
		<content:encoded><![CDATA[<p>&#8230; and  IT WORKS on WP 2.8.2 <img src='http://joelstarnes.co.uk/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phpworker</title>
		<link>http://joelstarnes.co.uk/blog/postmash/comment-page-2/#comment-2636</link>
		<dc:creator>phpworker</dc:creator>
		<pubDate>Wed, 29 Jul 2009 09:43:12 +0000</pubDate>
		<guid isPermaLink="false">http://joelstarnes.co.uk/blog/?page_id=40#comment-2636</guid>
		<description>&lt;a href=&quot;#comment-598&quot; rel=&quot;nofollow&quot;&gt;@Concorsi a Premi:&lt;/a&gt; 

Thanks for sharing, this tip really helped me out :)

BTW, great plugin. Is there any way to integrate such functionality with core Admin Posts Page?

Cheers!</description>
		<content:encoded><![CDATA[<p><a href="#comment-598" rel="nofollow">@Concorsi a Premi:</a> </p>
<p>Thanks for sharing, this tip really helped me out <img src='http://joelstarnes.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>BTW, great plugin. Is there any way to integrate such functionality with core Admin Posts Page?</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giri Fox</title>
		<link>http://joelstarnes.co.uk/blog/postmash/comment-page-2/#comment-2613</link>
		<dc:creator>Giri Fox</dc:creator>
		<pubDate>Tue, 28 Jul 2009 16:42:52 +0000</pubDate>
		<guid isPermaLink="false">http://joelstarnes.co.uk/blog/?page_id=40#comment-2613</guid>
		<description>Hi mate, you said you have uploaded a new v1.2, but wordpress.org is not providing that; it still downloads v1.1</description>
		<content:encoded><![CDATA[<p>Hi mate, you said you have uploaded a new v1.2, but wordpress.org is not providing that; it still downloads v1.1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Timothy</title>
		<link>http://joelstarnes.co.uk/blog/postmash/comment-page-2/#comment-2472</link>
		<dc:creator>Timothy</dc:creator>
		<pubDate>Fri, 24 Jul 2009 15:31:32 +0000</pubDate>
		<guid isPermaLink="false">http://joelstarnes.co.uk/blog/?page_id=40#comment-2472</guid>
		<description>The instructions are a bit confusing on how they are worded.  You want to put the first bit of code right before if(have_posts()) and then the last bit right after.  So it would look like:
&lt;code&gt;set(&#039;orderby&#039;, &#039;menu_order&#039;);  
    $wp_query-&gt;set(&#039;order&#039;, &#039;ASC&#039;);  
    $wp_query-&gt;get_posts();  
?&gt;
	
    
&lt;/code&gt;
At least this worked for me using WP  2.8.2</description>
		<content:encoded><![CDATA[<p>The instructions are a bit confusing on how they are worded.  You want to put the first bit of code right before if(have_posts()) and then the last bit right after.  So it would look like:<br />
<code>set('orderby', 'menu_order');<br />
    $wp_query-&gt;set('order', 'ASC');<br />
    $wp_query-&gt;get_posts();<br />
?&gt;</p>
<p></code><br />
At least this worked for me using WP  2.8.2</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Meagan</title>
		<link>http://joelstarnes.co.uk/blog/postmash/comment-page-2/#comment-2454</link>
		<dc:creator>Meagan</dc:creator>
		<pubDate>Thu, 23 Jul 2009 21:45:58 +0000</pubDate>
		<guid isPermaLink="false">http://joelstarnes.co.uk/blog/?page_id=40#comment-2454</guid>
		<description>Hi, Joel.  I have inserted the code into the appropriate area in my main index file template with Studio Press Allure.  Still, I am unable to rearrange my post order.  My code now looks like this:
set(&#039;orderby&#039;, &#039;menu_order&#039;); 
                            $wp_query-&gt;set(&#039;order&#039;, &#039;ASC&#039;);  
                            $wp_query-&gt;get_posts();
                        ?&gt;

                        

Am I doing something wrong, or do I need to execute a call somewhere?  If so, where does this call need to be put?</description>
		<content:encoded><![CDATA[<p>Hi, Joel.  I have inserted the code into the appropriate area in my main index file template with Studio Press Allure.  Still, I am unable to rearrange my post order.  My code now looks like this:<br />
set(&#8217;orderby&#8217;, &#8216;menu_order&#8217;);<br />
                            $wp_query-&gt;set(&#8217;order&#8217;, &#8216;ASC&#8217;);<br />
                            $wp_query-&gt;get_posts();<br />
                        ?&gt;</p>
<p>Am I doing something wrong, or do I need to execute a call somewhere?  If so, where does this call need to be put?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig</title>
		<link>http://joelstarnes.co.uk/blog/postmash/comment-page-2/#comment-2421</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Wed, 22 Jul 2009 23:11:05 +0000</pubDate>
		<guid isPermaLink="false">http://joelstarnes.co.uk/blog/?page_id=40#comment-2421</guid>
		<description>Joel - excellent plugin. Is it possible to assign different style classes to different posts using PostMash? I&#039;ve got 9 posts i want to show, 6 with 1 style class and 3 with a different style class.

Cheers, Craig</description>
		<content:encoded><![CDATA[<p>Joel &#8211; excellent plugin. Is it possible to assign different style classes to different posts using PostMash? I&#8217;ve got 9 posts i want to show, 6 with 1 style class and 3 with a different style class.</p>
<p>Cheers, Craig</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WORDPRESS SUGGESTED PLUGINS &#124; framework</title>
		<link>http://joelstarnes.co.uk/blog/postmash/comment-page-2/#comment-2407</link>
		<dc:creator>WORDPRESS SUGGESTED PLUGINS &#124; framework</dc:creator>
		<pubDate>Wed, 22 Jul 2009 10:44:18 +0000</pubDate>
		<guid isPermaLink="false">http://joelstarnes.co.uk/blog/?page_id=40#comment-2407</guid>
		<description>[...] It does a simple but very important thingy, allows you to order all the arcticles! You can&#8217;t live without. Installing it is not enough, after is needed a little modification to the code. details and download [...]</description>
		<content:encoded><![CDATA[<p>[...] It does a simple but very important thingy, allows you to order all the arcticles! You can&#8217;t live without. Installing it is not enough, after is needed a little modification to the code. details and download [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress postMash Widget &#124; DansNetwork.com</title>
		<link>http://joelstarnes.co.uk/blog/postmash/comment-page-2/#comment-2392</link>
		<dc:creator>Wordpress postMash Widget &#124; DansNetwork.com</dc:creator>
		<pubDate>Tue, 21 Jul 2009 21:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://joelstarnes.co.uk/blog/?page_id=40#comment-2392</guid>
		<description>[...] really like the postMash plugin for Wordpress. It allows you to drag and drop your posts into any order. This is great when [...]</description>
		<content:encoded><![CDATA[<p>[...] really like the postMash plugin for Wordpress. It allows you to drag and drop your posts into any order. This is great when [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gianfranco</title>
		<link>http://joelstarnes.co.uk/blog/postmash/comment-page-2/#comment-2343</link>
		<dc:creator>Gianfranco</dc:creator>
		<pubDate>Sun, 19 Jul 2009 17:47:39 +0000</pubDate>
		<guid isPermaLink="false">http://joelstarnes.co.uk/blog/?page_id=40#comment-2343</guid>
		<description>Ok, cool, I&#039;ll check it out. Thank you!</description>
		<content:encoded><![CDATA[<p>Ok, cool, I&#8217;ll check it out. Thank you!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
