<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DansNetwork.com &#187; widgets</title>
	<atom:link href="http://dansnetwork.com/tag/widgets/feed/" rel="self" type="application/rss+xml" />
	<link>http://dansnetwork.com</link>
	<description>Web Design, Javascript, CSS, and More...</description>
	<lastBuildDate>Sun, 29 Apr 2012 11:36:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Wordpress postMash Widget</title>
		<link>http://dansnetwork.com/wordpress-postmash-widget/</link>
		<comments>http://dansnetwork.com/wordpress-postmash-widget/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 21:57:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[widgets]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://dansnetwork.com/?p=56</guid>
		<description><![CDATA[I really like the postMash plugin for Wordpress. It allows you to drag and drop your posts into any order. This is great when using posts as events. You can put them into the order that they'll occur rather than the order that you posted them. The only problem is that the Recent Posts widget [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I really like the <a href="http://joelstarnes.co.uk/blog/postMash/">postMash</a> plugin for Wordpress. It allows you to drag and drop your posts into any order. This is great when using posts as events. You can put them into the order that they'll occur rather than the order that you posted them. The only problem is that the Recent Posts widget won't match your post order once you've re-ordered them.</p>
<p style="text-align: left;">Here I've modified the Recent Posts widget (file: /wp-includes/<strong>default-widgets.php</strong>) so that it'll work with this plugin.</p>
<p>
Insert the following code after line #545 (<em>$r = new WP_Query(array('showposts' =>...</em>)(WP ver-2.8)</p>
<pre class="brush: php;">
$r-&gt;set('orderby', 'menu_order');
$r-&gt;set('order', 'ASC');
$r-&gt;get_posts();
</pre>
]]></content:encoded>
			<wfw:commentRss>http://dansnetwork.com/wordpress-postmash-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

