<?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>WordPress Design</title>
	<atom:link href="http://wordpressdesign.testbp.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpressdesign.testbp.org</link>
	<description>A blog about WordPress design and more.</description>
	<lastBuildDate>Thu, 20 Nov 2008 14:12:39 +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>Showing off your FeedBurner subscribers</title>
		<link>http://wordpressdesign.testbp.org/2008/11/20/showing-off-your-feedburner-subscribers/</link>
		<comments>http://wordpressdesign.testbp.org/2008/11/20/showing-off-your-feedburner-subscribers/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 14:12:39 +0000</pubDate>
		<dc:creator>advinci</dc:creator>
				<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://wordpressdesign.testbp.org/?p=15</guid>
		<description><![CDATA[Another great post from http://yoast.com
Quite a few websites have started to show of their FeedBurner subscriber count with something else than a widget. To do that, you have to be able to grab the number of subscribers through the FeedBurner API.
Now I bet you want to know how! It&#8217;s bloody easy in WordPress, just do [...]]]></description>
			<content:encoded><![CDATA[<p>Another great post from http://yoast.com</p>
<blockquote><p>Quite a few websites have started to show of their FeedBurner subscriber count with something else than a widget. To do that, you have to be able to grab the number of subscribers through the <a href="http://code.google.com/apis/feedburner/">FeedBurner API</a>.</p>
<p>Now I bet you want to know how! It&#8217;s bloody easy in WordPress, just do this:</p>
<div class="wp_syntax">
<div class="code">
<pre style="font-family: monospace"><span style="color: #000088">$fb</span> <span style="color: #339933">=</span> get_option<span style="color: #009900">(</span><span style="color: #0000ff">"feedburnersubscribecount"</span><span style="color: #009900">)</span>;
<span style="color: #b1b100">if</span> <span style="color: #009900">(</span><span style="color: #000088">$fb</span><span style="color: #009900">[</span><span>'lastcheck'</span><span style="color: #009900">]</span> <span style="color: #339933">&lt;</span> <span style="color: #009900">(</span> <span style="color: #990000">mktime</span><span style="color: #009900">(</span><span style="color: #009900">)</span> <span style="color: #339933">-</span> <span style="color: #cc66cc">600</span> <span style="color: #009900">)</span> <span style="color: #009900">)</span> <span style="color: #009900">{</span>
	<span style="color: #000088">$snoopy</span> <span style="color: #339933">=</span> <span style="color: #000000;font-weight: bold">new</span> Snoopy;
	<span style="color: #000088">$result</span> <span style="color: #339933">=</span> <span style="color: #000088">$snoopy</span><span style="color: #339933">-&gt;</span><span style="color: #004000">fetch</span><span style="color: #009900">(</span><span style="color: #0000ff">"http://api.feedburner.com/awareness/1.0/GetFeedData?uri=feedburnerid"</span><span style="color: #009900">)</span>;
	<span style="color: #b1b100">if</span> <span style="color: #009900">(</span><span style="color: #000088">$result</span><span style="color: #009900">)</span> <span style="color: #009900">{</span>
		<span style="color: #990000">preg_match</span><span style="color: #009900">(</span><span>'/circulation=\"([0-9]+)\"/'</span><span style="color: #339933">,</span><span style="color: #000088">$snoopy</span><span style="color: #339933">-&gt;</span><span style="color: #004000">results</span><span style="color: #339933">,</span> <span style="color: #000088">$matches</span><span style="color: #009900">)</span>;
		<span style="color: #b1b100">if</span> <span style="color: #009900">(</span><span style="color: #000088">$matches</span><span style="color: #009900">[</span><span style="color: #cc66cc">1</span><span style="color: #009900">]</span> <span style="color: #339933">!=</span> <span style="color: #800080">0</span><span style="color: #009900">)</span>
			<span style="color: #000088">$fb</span><span style="color: #009900">[</span><span>'count'</span><span style="color: #009900">]</span> <span style="color: #339933">=</span> <span style="color: #000088">$matches</span><span style="color: #009900">[</span><span style="color: #cc66cc">1</span><span style="color: #009900">]</span>;
		<span style="color: #000088">$fb</span><span style="color: #009900">[</span><span>'lastcheck'</span><span style="color: #009900">]</span> <span style="color: #339933">=</span> <span style="color: #990000">mktime</span><span style="color: #009900">(</span><span style="color: #009900">)</span>;
		update_option<span style="color: #009900">(</span><span style="color: #0000ff">"feedburnersubscribecount"</span><span style="color: #339933">,</span><span style="color: #000088">$fb</span><span style="color: #009900">)</span>;
	<span style="color: #009900">}</span>
<span style="color: #009900">}</span>
<span style="color: #990000">echo</span> <span>''</span><span style="color: #339933">.</span><span style="color: #000088">$fb</span><span style="color: #009900">[</span><span>'count'</span><span style="color: #009900">]</span><span style="color: #339933">.</span><span>' Subscribers can<span>\'</span>t be wrong! Subscribe by &lt;a href="http://yoast.com/email-blog-updates/"&gt;email&lt;/a&gt; or to the &lt;a rel="nofollow" href="http://feeds.feedburner.com/joostdevalk"&gt;RSS feed&lt;/a&gt; now!'</span>;</pre>
</div>
</div>
<p>Copy, paste, replace <code>feedburnerid</code> with your own FeedBurner ID, and you&#8217;re done!</p>
<p><strong>Update:</strong> updated the code to include caching, as you might overload the FeedBurner API otherwise.</p>
<p><strong>Update 2:</strong> if you get an error saying it can&#8217;t find the class Snoopy, add this above the code:</p>
<div class="wp_syntax"></div>
<pre style="font-family: monospace"><span style="color: #b1b100">require_once</span><span style="color: #009900">(</span>ABSPATH <span style="color: #339933">.</span> <span>'wp-includes/class-snoopy.php'</span><span style="color: #009900">)</span>;</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wordpressdesign.testbp.org/2008/11/20/showing-off-your-feedburner-subscribers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to display your last tweet in WordPress</title>
		<link>http://wordpressdesign.testbp.org/2008/11/17/how-to-display-your-last-tweet-in-wordpress/</link>
		<comments>http://wordpressdesign.testbp.org/2008/11/17/how-to-display-your-last-tweet-in-wordpress/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 14:12:38 +0000</pubDate>
		<dc:creator>advinci</dc:creator>
				<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://wordpressdesign.testbp.org/?p=12</guid>
		<description><![CDATA[I found this great post here. Check this blog out if you want more wordpress advice.
I wanted to show my latest tweet on the front page of this site, and although I know there are several plugins which probably could&#8217;ve helped me do this, I decided to see how easy the API was to use.
It [...]]]></description>
			<content:encoded><![CDATA[<p>I found this great post <a href="http://yoast.com/display-latest-tweet/">here</a>. Check this blog out if you want more wordpress advice.</p>
<blockquote><p>I wanted to show my latest tweet on the front page of this site, and although I know there are several plugins which probably could&#8217;ve helped me do this, I decided to see how easy the <a href="http://apiwiki.twitter.com/REST+API+Documentation">API</a> was to use.</p>
<p>It turned out to be incredibly easy, as long as you have PHP 5.2 or higher, that is.</p>
<p>This is the code:</p>
<div class="wp_syntax">
<div class="code">
<pre style="font-family: monospace"><span style="color: #b1b100">require_once</span><span style="color: #009900">(</span>ABSPATH <span style="color: #339933">.</span> <span>'wp-includes/class-snoopy.php'</span><span style="color: #009900">)</span>;
<span style="color: #000088">$snoopy</span> <span style="color: #339933">=</span> <span style="font-weight: bold;color: #000000">new</span> Snoopy;
<span style="color: #000088">$snoopy</span><span style="color: #339933">-&gt;</span><span style="color: #004000">fetch</span><span style="color: #009900">(</span><span style="color: #0000ff">"http://twitter.com/statuses/user_timeline/jdevalk.json?count=1"</span><span style="color: #009900">)</span>;
<span style="color: #000088">$twitterdata</span> <span style="color: #339933">=</span> json_decode<span style="color: #009900">(</span><span style="color: #000088">$snoopy</span><span style="color: #339933">-&gt;</span><span style="color: #004000">results</span><span style="color: #339933">,</span><span style="font-weight: bold;color: #000000">true</span><span style="color: #009900">)</span>;
<span style="color: #990000">echo</span> <span style="color: #0000ff">"&lt;p&gt;<span style="font-weight: bold;color: #000099">\"</span>"</span><span style="color: #339933">.</span><span style="color: #000088">$twitterdata</span><span style="color: #009900">[</span><span style="color: #800080">0</span><span style="color: #009900">]</span><span style="color: #009900">[</span><span style="color: #0000ff">"text"</span><span style="color: #009900">]</span><span style="color: #339933">.</span><span style="color: #0000ff">"<span style="font-weight: bold;color: #000099">\"</span>&lt;/p&gt;"</span>;</pre>
</div>
</div>
<p>As you can see, I use the Snoopy library to fetch the data, as that comes with WordPress by default. Than I decode the JSON results by using the <code>json_decode</code> function. This is the reason you need PHP 5.2 or up, as this was only included with this version of PHP.</p>
<p>Next, we output it. Of course, this is a quick &amp; dirty implementation. If I got dugg now, and 1,000 people a minute came looking at that page, it should have some sort of caching in there. For now though, this is fine as it is!</p>
<p><strong>Update:</strong> As Kim noticed in the comments, I&#8217;ve added some code to automatically link any @username mentions to those usernames. Replace the last echo line above with this:</p>
<div class="wp_syntax">
<div class="code">
<pre style="font-family: monospace"><span style="color: #000088">$pattern</span> <span style="color: #339933">=</span> <span>'/\@([a-zA-Z]+)/'</span>;
<span style="color: #000088">$replace</span> <span style="color: #339933">=</span> <span>'&lt;a href="http://twitter.com/'</span><span style="color: #339933">.</span><span style="color: #990000">strtolower</span><span style="color: #009900">(</span><span>'\1'</span><span style="color: #009900">)</span><span style="color: #339933">.</span><span>'"&gt;@\1&lt;/a&gt;'</span>;
<span style="color: #000088">$output</span> <span style="color: #339933">=</span> <span style="color: #990000">preg_replace</span><span style="color: #009900">(</span><span style="color: #000088">$pattern</span><span style="color: #339933">,</span><span style="color: #000088">$replace</span><span style="color: #339933">,</span><span style="color: #000088">$twitterdata</span><span style="color: #009900">[</span><span style="color: #800080">0</span><span style="color: #009900">]</span><span style="color: #009900">[</span><span style="color: #0000ff">"text"</span><span style="color: #009900">]</span><span style="color: #009900">)</span>;
<span style="color: #990000">echo</span> <span style="color: #0000ff">"&lt;p&gt;<span style="font-weight: bold;color: #000099">\"</span>"</span><span style="color: #339933">.</span><span style="color: #000088">$output</span><span style="color: #339933">.</span><span style="color: #0000ff">"<span style="font-weight: bold;color: #000099">\"</span>&lt;/p&gt;"</span>;</pre>
</div>
</div>
<p>You could even decide to add <code>rel="nofollow"</code> the <code>$replace</code> if you don&#8217;t want those links to give juice.</p>
<p><strong>Update 2:</strong> To make it even more complex, here is the entire code I now use, which excludes replies and caches the Twitter API requests so you won&#8217;t overload the API:</p>
<div class="wp_syntax">
<div class="code">
<pre style="font-family: monospace"><span style="color: #b1b100">require_once</span><span style="color: #009900">(</span>ABSPATH <span style="color: #339933">.</span> <span>'wp-includes/class-snoopy.php'</span><span style="color: #009900">)</span>;
<span style="color: #000088">$tweet</span>   <span style="color: #339933">=</span> get_option<span style="color: #009900">(</span><span style="color: #0000ff">"lasttweet"</span><span style="color: #009900">)</span>;
<span style="color: #000088">$url</span>  <span style="color: #339933">=</span> <span style="color: #0000ff">"http://twitter.com/statuses/user_timeline/jdevalk.json?count=20"</span>;
<span style="color: #b1b100">if</span> <span style="color: #009900">(</span><span style="color: #000088">$tweet</span><span style="color: #009900">[</span><span>'lastcheck'</span><span style="color: #009900">]</span> <span style="color: #339933">&lt;</span> <span style="color: #009900">(</span> <span style="color: #990000">mktime</span><span style="color: #009900">(</span><span style="color: #009900">)</span> <span style="color: #339933">-</span> <span style="color: #cc66cc">60</span> <span style="color: #009900">)</span> <span style="color: #009900">)</span> <span style="color: #009900">{</span>
  <span style="color: #000088">$snoopy</span> <span style="color: #339933">=</span> <span style="font-weight: bold;color: #000000">new</span> Snoopy;
  <span style="color: #000088">$result</span> <span style="color: #339933">=</span> <span style="color: #000088">$snoopy</span><span style="color: #339933">-&gt;</span><span style="color: #004000">fetch</span><span style="color: #009900">(</span><span style="color: #000088">$url</span><span style="color: #009900">)</span>;
  <span style="color: #b1b100">if</span> <span style="color: #009900">(</span><span style="color: #000088">$result</span><span style="color: #009900">)</span> <span style="color: #009900">{</span>
    <span style="color: #000088">$twitterdata</span>   <span style="color: #339933">=</span> json_decode<span style="color: #009900">(</span><span style="color: #000088">$snoopy</span><span style="color: #339933">-&gt;</span><span style="color: #004000">results</span><span style="color: #339933">,</span><span style="font-weight: bold;color: #000000">true</span><span style="color: #009900">)</span>;
    <span style="color: #000088">$i</span> <span style="color: #339933">=</span> <span style="color: #800080">0</span>;
    <span style="color: #b1b100">while</span> <span style="color: #009900">(</span><span style="color: #000088">$twitterdata</span><span style="color: #009900">[</span><span style="color: #000088">$i</span><span style="color: #009900">]</span><span style="color: #009900">[</span><span>'in_reply_to_user_id'</span><span style="color: #009900">]</span> <span style="color: #339933">!=</span> <span>''</span><span style="color: #009900">)</span> <span style="color: #009900">{</span>
      <span style="color: #000088">$i</span>++;
    <span style="color: #009900">}</span>
    <span style="color: #000088">$pattern</span>  <span style="color: #339933">=</span> <span>'/\@([a-zA-Z]+)/'</span>;
    <span style="color: #000088">$replace</span>  <span style="color: #339933">=</span> <span>'&lt;a href="http://twitter.com/'</span><span style="color: #339933">.</span><span style="color: #990000">strtolower</span><span style="color: #009900">(</span><span>'\1'</span><span style="color: #009900">)</span><span style="color: #339933">.</span><span>'"&gt;@\1&lt;/a&gt;'</span>;
    <span style="color: #000088">$output</span>   <span style="color: #339933">=</span> <span style="color: #990000">preg_replace</span><span style="color: #009900">(</span><span style="color: #000088">$pattern</span><span style="color: #339933">,</span><span style="color: #000088">$replace</span><span style="color: #339933">,</span><span style="color: #000088">$twitterdata</span><span style="color: #009900">[</span><span style="color: #000088">$i</span><span style="color: #009900">]</span><span style="color: #009900">[</span><span style="color: #0000ff">"text"</span><span style="color: #009900">]</span><span style="color: #009900">)</span>;  

    <span style="color: #000088">$tweet</span><span style="color: #009900">[</span><span>'lastcheck'</span><span style="color: #009900">]</span> <span style="color: #339933">=</span> <span style="color: #990000">mktime</span><span style="color: #009900">(</span><span style="color: #009900">)</span>;
    <span style="color: #000088">$tweet</span><span style="color: #009900">[</span><span>'data'</span><span style="color: #009900">]</span>    <span style="color: #339933">=</span> <span style="color: #000088">$output</span>;
    <span style="color: #000088">$tweet</span><span style="color: #009900">[</span><span>'rawdata'</span><span style="color: #009900">]</span>  <span style="color: #339933">=</span> <span style="color: #000088">$twitterdata</span>;
    <span style="color: #000088">$tweet</span><span style="color: #009900">[</span><span>'followers'</span><span style="color: #009900">]</span> <span style="color: #339933">=</span> <span style="color: #000088">$twitterdata</span><span style="color: #009900">[</span><span style="color: #800080">0</span><span style="color: #009900">]</span><span style="color: #009900">[</span><span>'user'</span><span style="color: #009900">]</span><span style="color: #009900">[</span><span>'followers_count'</span><span style="color: #009900">]</span>;
    update_option<span style="color: #009900">(</span><span>'lasttweet'</span><span style="color: #339933">,</span><span style="color: #000088">$tweet</span><span style="color: #009900">)</span>;
  <span style="color: #009900">}</span> <span style="color: #b1b100">else</span> <span style="color: #009900">{</span>
    <span style="color: #990000">echo</span> <span style="color: #0000ff">"Twitter API not responding."</span>;
  <span style="color: #009900">}</span>
<span style="color: #009900">}</span> <span style="color: #b1b100">else</span> <span style="color: #009900">{</span>
  <span style="color: #000088">$output</span> <span style="color: #339933">=</span> <span style="color: #000088">$tweet</span><span style="color: #009900">[</span><span>'data'</span><span style="color: #009900">]</span>;
<span style="color: #009900">}</span>
<span style="color: #990000">echo</span> <span style="color: #0000ff">"&lt;p&gt;<span style="font-weight: bold;color: #000099">\"</span>"</span><span style="color: #339933">.</span><span style="color: #000088">$output</span><span style="color: #339933">.</span><span style="color: #0000ff">"<span style="font-weight: bold;color: #000099">\"</span>&lt;/p&gt;"</span>;</pre>
</div>
</div>
<p>As you can see it also saves the amount of followers you have into <code>$tweet['followers']</code>, which I then use to display this:</p>
<div class="wp_syntax">
<div class="code">
<pre style="font-family: monospace">&lt;p&gt;
  &lt;a href="http://twitter.com/jdevalk"&gt;
    <span style="font-weight: bold;color: #000000">&lt;?=</span><span style="color: #000088">$tweet</span><span style="color: #009900">[</span><span>'followers'</span><span style="color: #009900">]</span><span style="font-weight: bold;color: #000000">?&gt;</span> followers on Twitter, and you?
  &lt;/a&gt;
&lt;/p&gt;</pre>
</div>
</div>
<p>Update 3: Another fix to automatically make all links clickable, below this line:</p>
<div class="wp_syntax">
<div class="code">
<pre style="font-family: monospace"><span style="color: #000088">$output</span> <span style="color: #339933">=</span> <span style="color: #990000">preg_replace</span><span style="color: #009900">(</span><span style="color: #000088">$pattern</span><span style="color: #339933">,</span><span style="color: #000088">$replace</span><span style="color: #339933">,</span><span style="color: #000088">$twitterdata</span><span style="color: #009900">[</span><span style="color: #000088">$i</span><span style="color: #009900">]</span><span style="color: #009900">[</span><span style="color: #0000ff">"text"</span><span style="color: #009900">]</span><span style="color: #009900">)</span>;</pre>
</div>
</div>
<p>Add:</p>
<div class="wp_syntax">
<div class="code">
<pre style="font-family: monospace"><span style="color: #000088">$output</span> <span style="color: #339933">=</span> make_clickable<span style="color: #009900">(</span><span style="color: #000088">$output</span><span style="color: #009900">)</span>;</pre>
</div>
</div>
<p>This will use the WordPress internal <code>make_clickable</code> function to make sure that all URL&#8217;s are clickable.</p>
<p>Enjoy!</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wordpressdesign.testbp.org/2008/11/17/how-to-display-your-last-tweet-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Which hosting I use for WordPress blogs?</title>
		<link>http://wordpressdesign.testbp.org/2008/10/17/which-hosting-i-use-for-wordpress-blogs/</link>
		<comments>http://wordpressdesign.testbp.org/2008/10/17/which-hosting-i-use-for-wordpress-blogs/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 12:02:07 +0000</pubDate>
		<dc:creator>advinci</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress mu]]></category>

		<guid isPermaLink="false">http://wordpressdesign.testbp.org/?p=3</guid>
		<description><![CDATA[I have been using HostGator.com over a year now and am more than happy with it.
Why I like HostGator:

WordPress 1 click installation. Hostgator is famous for its one-click installations (WP, Joomla, forums etc).
Great prices. I use a hosting plan for $7.95 a month for my regular WP blogs and a Reseller account for $24.95 for [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using <a rel="nofollow" href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=datiger">HostGator.com</a> over a year now and am more than happy with it.</p>
<p>Why I like HostGator:</p>
<ul>
<li><strong>WordPress 1 click installation.</strong> <a href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=datiger" rel="nofollow">Hostgator</a> is famous for its one-click installations (WP, Joomla, forums etc).</li>
<li><strong>Great prices.</strong> I use a hosting plan for $7.95 a month for my regular WP blogs and a Reseller account for $24.95 for my WP MU sites.</li>
<li><strong>Unlimited domains.</strong> All my websites are under one account, costing only the price you see above.</li>
<li><strong>Unlimited disk space and </strong><strong>bandwidth</strong><strong>.</strong> It&#8217;s probably not really unlimited but I having several websites under this account haven&#8217;t had any problems yet.</li>
<li><strong>PHP 5 and mod_rewrite.</strong> Many WordPress users have problems because their hosting doesn&#8217;t support php5 and mod_rewrite. No problems here.</li>
<li><strong>Live support.</strong> If you have any problems or questions you can use live chat for support. They don&#8217;t know all the answers but they&#8217;ve helped me several times.</li>
</ul>
<p>So if you&#8217;re looking for a good shared hosting then <a href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=datiger" rel="nofollow">HostGator</a> is one that I recommend. You can check out different hosting packages <a rel="nofollow" href="http://secure.hostgator.com/cgi-bin/affiliates/clickthru.cgi?id=datiger">here</a>.</p>
<p><strong>NB!</strong> If you want to install WordPress MU and BuddyPress you will need a Reseller account to <a href="http://www.blogopreneur.com/2006/11/06/installing-wordpress-mu-on-a-cpanelwhm-server/">configure wildcard DNS</a> in order to make subdomains work. Though WP MU works on a regular account too, but only with subfolders instead of subdomains.</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressdesign.testbp.org/2008/10/17/which-hosting-i-use-for-wordpress-blogs/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Hello!</title>
		<link>http://wordpressdesign.testbp.org/2008/10/17/hello-world/</link>
		<comments>http://wordpressdesign.testbp.org/2008/10/17/hello-world/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 10:44:15 +0000</pubDate>
		<dc:creator>advinci</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hello]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I made an account to test BuddyPress. But I guess I might post here a thing or two related to WordPress, since I&#8217;m already registered here.
]]></description>
			<content:encoded><![CDATA[<p>I made an account to test BuddyPress. But I guess I might post here a thing or two related to WordPress, since I&#8217;m already registered here.</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpressdesign.testbp.org/2008/10/17/hello-world/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
