<?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>Themocracy WordPress Themes &#187; twitter</title>
	<atom:link href="http://themocracy.com/tag/twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://themocracy.com</link>
	<description>WordPress Theme Design</description>
	<lastBuildDate>Mon, 26 Jul 2010 06:18:07 +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>Using JSON with WordPress</title>
		<link>http://themocracy.com/2010/02/json-wordpress/</link>
		<comments>http://themocracy.com/2010/02/json-wordpress/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 13:16:33 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://themocracy.com/?p=258</guid>
		<description><![CDATA[With the popularity of jQuery, AJAX, and client-side programming operations in general, there's more use made of JSON as a format for getting data backwards and forwards. 

For example, the Twitter API offers data as JSON  - and more manageably than accessing their RSS XML feeds for user timelines.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthemocracy.com%2F2010%2F02%2Fjson-wordpress%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthemocracy.com%2F2010%2F02%2Fjson-wordpress%2F" height="61" width="51" /></a></div><p><img src="http://themocracy.com/wp-content/uploads/2010/02/json.gif" alt="json with wordpress" title="json-wordpress" width="128" height="128" class="alignright size-full wp-image-259" />With the popularity of jQuery, AJAX, and client-side programming operations in general, there&#8217;s more use made of JSON as a format for getting data backwards and forwards. </p>
<p>For example, the Twitter API offers data as JSON  &#8211; and more manageably than accessing their RSS XML feeds for user timelines etc.</p>
<pre>http://twitter.com/status/user_timeline/USERNAME.json?count=10 </pre>
<p>The issue is how to make use of JSON-encoded information in the WordPress environment &#8211; much of what is available is only recently available, so some care has to be taken about how it&#8217;s used.</p>
<h3>1. Native PHP functions</h3>
<p><strong>json_encode()</strong> and <strong>json_decode()</strong> make life very simple &#8211; but these functions are only available in PHP >= 5.2.0 and WordPress is still designed to run on significantly older versions of PHP than this. Alternatives would have to be supplied if you were thinking about releasing a plugin. There are custom-written functions to reproduce these in PHP4, see for example user contributions to <a href="http://php.net/manual/en/function.json-encode.php">json_encode</a>. These are often not 100% perfect, but one may well do all that you require&#8230;</p>
<h3>2. JSON2</h3>
<p>If you&#8217;re happy to do the work in jQuery/javaScript, WordPress 2.9 comes with JSON2 bundled, registered and ready to go&#8230;</p>
<pre class="brush: php">
add_action(&#039;wp_print_scripts&#039;,&#039;load_json_parser&#039;);

function load_json_parser(){

	if (is_admin()) return; // probably don&#039;t want this on admin pages

	wp_enqueue_script(&#039;json2&#039;);

}
</pre>
<p>No need any more to play around with eval in the javaScript, but again, this is a WordPress >= 2.9 thing&#8230;. </p>
<h3>3. Borrowing the Text Editor</h3>
<p>Lastly, there is one more, slightly unofficial, dodge that can be used. WordPress makes use of TinyMCE as its rich text editor and this comes with the its own JSON parser. Results may not be completely predictable. </p>
<pre class="brush: php">
require_once(ABSPATH.&quot;/wp-includes/js/tinymce/plugins/spellchecker/classes/utils/JSON.php&quot;);

$jsObj = new Moxiecode_JSON();

// encodes the supplied array to JSON format
$json = $jsObj-&gt;encode(array(&quot;key1&quot;=&gt;&quot;value1&quot;,&quot;key2&quot;=&gt;&quot;value2&quot;));

//decodes supplied JSON to a PHP array
$json_array = $jsObj-&gt;decode($json);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://themocracy.com/2010/02/json-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How&#8217;s Twitter doing these days?</title>
		<link>http://themocracy.com/2010/02/hows-twitter-doing/</link>
		<comments>http://themocracy.com/2010/02/hows-twitter-doing/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 10:52:19 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[cotweet]]></category>
		<category><![CDATA[socialoomph]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://themocracy.com/?p=235</guid>
		<description><![CDATA[Some thoughts on Twitter and how it affects the average WordPress blogger presently :- how to get value out of it, what to avoid and how to maintain a decent etiquette - it does seem to have grown slightly in the last year or so.

Success requires 2-way communication. "Broadcasters" - you know the ones... Their profile says 3 following 12,455 followers - they're not being a success via Twitter, they're trading off an established reputation.

It would be nice not to have to do the work, but if you're starting at the bottom... you'll have to do the work, no one else will. Follow those who follow you. ]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthemocracy.com%2F2010%2F02%2Fhows-twitter-doing%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthemocracy.com%2F2010%2F02%2Fhows-twitter-doing%2F" height="61" width="51" /></a></div><p><img src="http://themocracy.com/wp-content/uploads/2010/02/twitter2.gif" alt="" title="twitter" width="150" height="150" class="alignright size-full wp-image-236" /><strong>Some thoughts on Twitter and how it affects the average WordPress blogger presently</strong> :- how to get value out of it, what to avoid and how to maintain a decent etiquette &#8211; it does seem to have grown slightly in the last year or so.</p>
<p><strong>Success requires 2-way communication</strong>. &#8220;Broadcasters&#8221; &#8211; you know the ones&#8230; Their profile says 3 following 12,455 followers &#8211; they&#8217;re not being a success via Twitter, they&#8217;re trading off an established reputation.</p>
<p>It would be nice not to have to do the work, but if you&#8217;re starting at the bottom&#8230; you&#8217;ll have to do the work, no one else will. Follow those who follow you.<br />
<span id="more-235"></span><br />
<strong>Twitter is networking, linking, creating connections</strong>, so there&#8217;s logic in not just tweeting your own content.<br />
If someone tweets your content tweet about theirs and/or retweet them. People do respond well to being talked up &#8211; shameless, I know, but we are creatures of vanity. Giving someone a positive mention can pay a dividend. You can give them a recommendation at <a href="http://mrtweet.com/home">MrTweet</a> and elsewhere, and there&#8217;s always <strong>#followfriday</strong>.</p>
<p>Note that there are 2 competing factors with retweeting someone else&#8217;s content.</p>
<ol>
<li>You want to keep retweets vaguely accurate to your niche, obviously </li>
<li>But you&#8217;ll want to introduce your followers to someone/something new &#8211; they&#8217;ll think of you as authoritative, god forbid&#8230;</li>
</ol>
<p>Try to keep a handle on what you retweet, it&#8217;s all too easy to get carried away by the urge to fill up the timeline and look busy.  So careful who you recommend and retweet because it all reflects on you. Avoid the gimmicks of you follow me, I&#8217;ll follow you etc etc. looks tacky&#8230;.</p>
<p><strong>And do watch out for shortened urls</strong> &#8211; don&#8217;t display or retweet anything you haven&#8217;t first checked, and that definitely includes anything that arrives in a comment.</p>
<p>The nature of Twitter now is that nobody can read all their tweets &#8211; so a little bit of duplicate tweeting for your own content has its value. Too much and the risk is obvious, so maybe if you&#8217;re tweeting up a new blog post, mention it a couple of times on the day and then again a couple of days later, no great harm in that. Schedule &#8211; a little bit. <a href="http://www.socialoomph.com/">Socialoomph</a>, <a href="http://cotweet.com/">CoTweet</a> and others have the means to schedule your priceless content.</p>
<p>But definitely &#8211; we&#8217;re not always as good at this as we&#8217;d like to be &#8211; make some reply to your @mentions, if they&#8217;re not completely auto-generated. </p>
<p>On the other hand again, it&#8217;s more difficult, and probably not efficient, to keep up with all your direct messages &#8211; far too many of these are auto-generated marketing drivel. So there&#8217;s probably no good reason to DM somebody if you want to make sensible contact &#8211; you might try tweeting an @mention as well to indicate you sent a DM&#8230;  </p>
<p><strong>Don&#8217;t bother to get annoyed if someone makes no response</strong> &#8211; they may be far too busy with other things, they may be grateful but not inclined to fill up their timeline with mutual congratulations, they may be a bit of a tosser. Who knows&#8230; Don&#8217;t take it personally, get on with what&#8217;s next&#8230;</p>
<p>And lastly &#8211; <strong>waste no time on the pointless building of followers</strong>. There are good and bad followers, but the vast majority are meaningless followers. Yes, I know there are a few things around the web that reward huge metrics, but you&#8217;re sending out a tweet that even if noticed is never going to be in the sphere of interest of the noticer &#8211; what&#8217;s the point?</p>
<p>My guess, and that of others, is that Twitter is starting to fight a battle with its signal-to-noise ratio, other options such as FriendFeed seem to have their advantages (for how long&#8230;?) so it is up to you to keep it relevant&#8230; </p>
]]></content:encoded>
			<wfw:commentRss>http://themocracy.com/2010/02/hows-twitter-doing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress, Twitter and URL-shortening</title>
		<link>http://themocracy.com/2010/01/wordpress-twitter-and-url-shortening/</link>
		<comments>http://themocracy.com/2010/01/wordpress-twitter-and-url-shortening/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 09:26:10 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://themocracy.com/?p=196</guid>
		<description><![CDATA[You&#8217;re producing a WordPress theme, or plugin, that is related to Twitter and for obvious reasons you want to include url-shortening functionality&#8230; How&#8217;s it, generally, done?
Just the briefest snippet of PHP, this example for is.gd:-

	function shorten_url($url)	{
		$request = &#039;http://is.gd/api.php?longurl=&#039; . $url;
		return @file_get_contents($request);
	}


You might want to do a bit of error-catching on that. We&#8217;ve used file_get_contents() on [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthemocracy.com%2F2010%2F01%2Fwordpress-twitter-and-url-shortening%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthemocracy.com%2F2010%2F01%2Fwordpress-twitter-and-url-shortening%2F" height="61" width="51" /></a></div><p><img src="http://themocracy.com/wp-content/uploads/2010/01/wordpress-250x250-150x150.png" alt="" title="wordpress-250x250" width="150" height="150" class="alignright size-thumbnail wp-image-207" /><strong>You&#8217;re producing a WordPress theme, or plugin, that is related to Twitter </strong>and for obvious reasons you want to include url-shortening functionality&#8230; How&#8217;s it, generally, done?</p>
<p>Just the briefest snippet of PHP, this example for is.gd:-</p>
<pre class="brush: php">
	function shorten_url($url)	{
		$request = &#039;http://is.gd/api.php?longurl=&#039; . $url;
		return @file_get_contents($request);
	}
</pre>
<p><span id="more-196"></span><br />
You might want to do a bit of error-catching on that. We&#8217;ve used <strong>file_get_contents()</strong> on the basis that we write themes and plugins that work on PHP5 &#8211; the &#8216;official&#8217; WordPress way is probably still to use the bundled version of Snoopy. Or there&#8217;s always cURL &#8211; unless there isn&#8217;t on your server&#8230;</p>
<p>Any decent url-shortening service will have its own RESTful API location to do this &#8211; hunt in their Developer Tools</p>
<p>http://tinyurl.com/api-create.php?url={long_url}</p>
<p>et al&#8230; though some require login/password parameters to be passed, and some definitely require urlencoded parameters</p>
<p><strong>But&#8230;. your own name</strong></p>
<p>Don&#8217;t forget, in the particular case, if you&#8217;re customising your own WordPress installation, the possibility of using $_GET urls -these may well be short enough (if your domain name is short enough&#8230; obviously&#8230;.) . Using your own domain name has 2 advantages, 1 significant</p>
<p>1. If third parties quote the link directly on their web pages it&#8217;s your site getting the link value.<br />
2. Still works if the url-shortening site happens to die before your blog does&#8230;</p>
<p>And even if you have permalinks active, urls will redirect&#8230;.</p>
<p><a target="_blank" href="http://themocracy.com/?p=188">http://themocracy.com/?p=188</a> will redirect you to the pretty permalink version &#8211; job done.</p>
]]></content:encoded>
			<wfw:commentRss>http://themocracy.com/2010/01/wordpress-twitter-and-url-shortening/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WordPress Twitter Integration</title>
		<link>http://themocracy.com/2010/01/wordpress-twitter-integration/</link>
		<comments>http://themocracy.com/2010/01/wordpress-twitter-integration/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 17:35:01 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://themocracy.com/?p=204</guid>
		<description><![CDATA[Publicity, relationship-building, just plain keeping in touch &#8211; Twitter offers it all and the art is to integrate your tweeting into your blogging, if that doesn&#8217;t sound too salacious. Here&#8217;s a few scattered suggestions on the subject.
First up, to begin at the beginning, reply to @&#8217;s &#8211; I know it&#8217;s absolutely bleedin&#8217; obvious, but if [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthemocracy.com%2F2010%2F01%2Fwordpress-twitter-integration%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthemocracy.com%2F2010%2F01%2Fwordpress-twitter-integration%2F" height="61" width="51" /></a></div><p><img class="alignright size-full wp-image-205" title="twitter" src="http://themocracy.com/wp-content/uploads/2010/01/twitter.jpg" alt="" width="261" height="193" /><strong>Publicity, relationship-building, just plain keeping in touch</strong> &#8211; <em>Twitter offers it all and the art is to integrate your tweeting into your blogging, if that doesn&#8217;t sound too salacious.</em> Here&#8217;s a few scattered suggestions on the subject.</p>
<p>First up, to begin at the beginning, <strong>reply to @&#8217;s</strong> &#8211; I know it&#8217;s absolutely bleedin&#8217; obvious, but if you&#8217;re going to use Twitter at all, then it does make sense to keep an eye on people taking the trouble to contact you &#8211; if the @message isn&#8217;t total spam, of course. And probably a good idea nowadays never to let a tweet out on the world without one #hashtag.<br />
<span id="more-204"></span><br />
<strong>Display your twitterstream on the blog</strong> &#8211; there&#8217;s WordPress plugins for this &#8211; a lot of plugins, in all shapes, sizes and functionalities, such that the jury is still out on who&#8217;s the market leader. At the moment, the advice has to be download two or three, try them out and find the one that suits you&#8230;</p>
<p><a href="http://wordpress.org/extend/plugins/twitter-tools/">Twitter Tools</a> has a fair few features. Personally, I haven&#8217;t had much luck with this one &#8211; it seems to give up after a while and only start again when re-installed, and I haven&#8217;t got round to digging around the code to see if it&#8217;s a localised problem or intrinsic to the plugin. There&#8217;s also the issue of deleting manually, ie directly at the database level, any deleted tweets.</p>
<p>Twitter itself supplies <a href="http://twitter.com/account/badge">javascript snippets</a> to produce a badge of tweet lists &#8211; just paste it on your page somewhere, somehow &#8211; in practice, not recommended simply because the request takes a while to come back from Twitter&#8217;s overburdened servers and your page will likely hang at times. Tho&#8217; fair enough, things seem to be improving a lot in that direction recently &#8211; and I wouldn&#8217;t like the job myself of keeping Twitter up and running at that rate of growth.</p>
<p>Wider than just Twitter, there&#8217;s also the <a href="http://www.enthropia.com/labs/wp-lifestream/">Lifestream WordPress plugin</a>. Lots of features included, which do take a little bit of figuring out but you can merge twitter feeds, extra RSS and then any of the other social entities, Digg, FriendFeed etc etc.</p>
<p>One thing &#8211; if you&#8217;re going through a twitter-lazy period and all that appears in the sidebar is a set of auto-generated new blog posts 181 days ago, 193 days ago &#8211; that doesn&#8217;t look so good. A successful blog does actually require some work.</p>
<p>Among other Twitter-related WordPress plugins: -</p>
<p><a href="http://wordpress.org/extend/plugins/twitterlink-comments/">TwitterLink Comments</a> is a WordPress plugin which adds an input field to a post&#8217;s comment form for commenters to include their Twitter username &#8211; a follow me link is shown against that commenter&#8217;s profile &#8211; caution, a definite invitation for spam&#8230;</p>
<p>The slightly bilious <a href="http://wordpress.org/extend/plugins/tweetmeme/">TweetMeme</a> retweet button does what it says &#8211; a link allowing visitors to your blog to quickly retweet the post. For the competitive, there&#8217;s also a display of number of retweets of that url across Twitter.</p>
<p><strong>Do consider having a custom Twitter landing page on your blog</strong>. A relatively old dodge, but useful&#8230;</p>
<p>Instead of using your blog front page as your profile url without even thinking about it &#8211; take the trouble to produce a specialised landing page &#8211; a digest of who you are, what&#8217;s going on, all in a couple of hundred words. The logic behind this is that people using Twitter may well have different priorities and interests than your average blog-reader who&#8217;s arrived via search engine.</p>
<p>This profile url appears on your Twitter web page (and with the growth in non-browser-based twitter tools that gets viewed less and less) but also in various other places, directories etc. so it&#8217;s worth considering.</p>
<p>If you can give them what they want, grab their attention better, that&#8217;s one more connection made. Attention spans (of the young) are not very long nowadays&#8230;</p>
<p><strong>And do watch out for shortened urls</strong> &#8211; don&#8217;t display or retweet anything you haven&#8217;t checked, and that definitely includes anything that arrives in a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://themocracy.com/2010/01/wordpress-twitter-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress RSS Functions</title>
		<link>http://themocracy.com/2009/07/wordpress-rss-functions/</link>
		<comments>http://themocracy.com/2009/07/wordpress-rss-functions/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 12:40:48 +0000</pubDate>
		<dc:creator>Lisa</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[simplepie]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://themocracy.com/?p=119</guid>
		<description><![CDATA[So you want to get a RSS feed and echo it to a WordPress page or sidebar &#8211; you&#8217;ve already got the RSS sidebar widget feature, but what if you want a little more control over what&#8217;s coming out?
New in WordPress 2.8 is the fetch_feed() function &#8211; as the name suggests, a means of retrieving [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthemocracy.com%2F2009%2F07%2Fwordpress-rss-functions%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthemocracy.com%2F2009%2F07%2Fwordpress-rss-functions%2F" height="61" width="51" /></a></div><p><img src="http://themocracy.com/wp-content/uploads/2009/07/rss_img.jpg" alt="rss_img" title="rss_img" width="130" height="136" class="alignright size-full wp-image-126" /><strong>So you want to get a RSS feed and echo it to a WordPress page or sidebar</strong> &#8211; <em>you&#8217;ve already got the RSS sidebar widget feature, but what if you want a little more control over what&#8217;s coming out?</em></p>
<p>New in WordPress 2.8 is the <strong>fetch_feed()</strong> function &#8211; as the name suggests, a means of retrieving an external RSS feed, parsing it (extracting the relevant info, for output purposes) and also caching the raw data to ease the strain on both servers.<br />
<span id="more-119"></span><br />
fetch_feed() uses the Simplepie class to fetch and manipulate the RSS &#8211; in constrast to the functions it replaces, wp_rss(), get_rss() etc., which stuck with good old Magpie and Snoopy to get the job done.</p>
<p>And the use of the function itself is simplicity:</p>
<pre class="brush: php">
if(function_exists(&#039;fetch_feed&#039;)){
$uri = &#039;http://themocracy.com/feed/&#039;;
$feed = fetch_feed($uri);
}
</pre>
<p>Notice the function_exists check, to ensure compatibility&#8230;</p>
<p>The simplepie object returned is complex (some might say a touch clumsy, but probably necessarily so in order to handle the wide variety of XML lumped together under the heading RSS). <em>Don&#8217;t try to work with it directly&#8230; </em></p>
<p>Instead, what Simplepie has is methods to get at the data:<br />
This code retrieves the overall feed title and then loops through the RSS items, grabbing and outputting the relevant item data.</p>
<pre class="brush: php">
printf( $feed-&gt;get_title());

foreach ($feed-&gt;get_items() as $item){

printf(&#039;&lt;p&gt;&lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt;&lt;/p&gt;&#039;,$item-&gt;get_permalink(), $item-&gt;get_title());
printf(&#039;&lt;p&gt;%s&lt;/p&gt;&#039;,$item-&gt;get_description());
printf(&#039;&lt;p&gt;&lt;small&gt;%s&lt;/small&gt;&lt;/p&gt;&#039;,$item-&gt;get_date(&#039;j F Y | g:i a&#039;));
}
</pre>
<p>That&#8217;s the basic idea &#8211; see the <a href="http://simplepie.org/wiki/">Simplepie docs</a> for more&#8230;</p>
<p>You might want to try it as a quick way of getting a Twitter feed onto a page &#8211; or any other ideas for using RSS  feeds directly&#8230;?</p>
]]></content:encoded>
			<wfw:commentRss>http://themocracy.com/2009/07/wordpress-rss-functions/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
