<?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>Forums, Blogs, Wikis &#187; WordPress</title>
	<atom:link href="http://forumsblogswikis.com/category/blogs/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://forumsblogswikis.com</link>
	<description>News on forums, blogs, wikis, cms, etc</description>
	<lastBuildDate>Sat, 05 May 2012 17:33:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>WordPress, source code, and smart quotes</title>
		<link>http://forumsblogswikis.com/2008/12/15/wordpress-source-code-and-smart-quotes/</link>
		<comments>http://forumsblogswikis.com/2008/12/15/wordpress-source-code-and-smart-quotes/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 00:02:04 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Web Links]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=323</guid>
		<description><![CDATA[Turns out WordPress tries to make your posts look a little better by swapping out all normal quotes with smart quotes. That&#8217;s great for typography, but really bad when you&#8217;re posting source code like I often do on here. Trying to run pasted code with smart quotes in it will bring PHP down to its [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/12/15/wordpress-source-code-and-smart-quotes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Get custom field function</title>
		<link>http://forumsblogswikis.com/2008/10/10/wordpress-get-custom-field-function/</link>
		<comments>http://forumsblogswikis.com/2008/10/10/wordpress-get-custom-field-function/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 01:10:42 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=317</guid>
		<description><![CDATA[On several WordPress projects I've needed to get the value of a custom field.&#160; Not too difficult using the get_post_meta command, but I wanted a little quicker way.&#160; So I now add this little function to the functions.php file on themes I'm working on. PLAIN TEXT PHP: function getMeta&#40;$key&#41; &#123; global $post; return get_post_meta&#40;$post-&#62;ID, $key&#41;; [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/10/10/wordpress-get-custom-field-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.6 Available</title>
		<link>http://forumsblogswikis.com/2008/07/16/wordpress-26-available/</link>
		<comments>http://forumsblogswikis.com/2008/07/16/wordpress-26-available/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 12:17:34 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=286</guid>
		<description><![CDATA[That was a really quick turnaround from 2.5 to 2.6. I seems like I just got all of my WordPress sites updated to 2.5.1 and last night I logged in and saw a message that WordPress 2.6 was ready for download. Looks like I've found a project for today. But since we're here anyway, here's [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/07/16/wordpress-26-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install WordPress 2.5.1</title>
		<link>http://forumsblogswikis.com/2008/06/17/how-to-install-wordpress-251/</link>
		<comments>http://forumsblogswikis.com/2008/06/17/how-to-install-wordpress-251/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 22:37:28 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=277</guid>
		<description><![CDATA[WordPress is a insanely popular blogging platform, and with every release it gets better. It's also very easy to install, even for those who have never installed a CMS on their server before. The first step is to head over to WordPress.org and download the WordPress file. Click on the Download button on the top [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/06/17/how-to-install-wordpress-251/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turning off nofollow for blog comments</title>
		<link>http://forumsblogswikis.com/2008/04/06/turning-off-nofollow-for-blog-comments/</link>
		<comments>http://forumsblogswikis.com/2008/04/06/turning-off-nofollow-for-blog-comments/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 19:34:15 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[nofollow]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=256</guid>
		<description><![CDATA[We're going for a little experiment and going to turn off the rel=nofollow setting for comments. Well, for some comments. I found a WordPress plugin called Link Love that turns off the nofollow setting on links after the commenter has posted 10 comments. 10 seems like too many so I dropped the setting to 5.]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/04/06/turning-off-nofollow-for-blog-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bbPress sidebar widget for WordPress</title>
		<link>http://forumsblogswikis.com/2008/04/06/bbpress-sidebar-widget-for-wordpress/</link>
		<comments>http://forumsblogswikis.com/2008/04/06/bbpress-sidebar-widget-for-wordpress/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 16:31:16 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=254</guid>
		<description><![CDATA[This is my first shot at writing a sidebar widget for WordPress. Not much complexity here but it does its job well. About I recently added a forum to this site and needed a clean way to display login / logout, register, and profile links. The sidebar seemed the most likely place to have these [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/04/06/bbpress-sidebar-widget-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Upgrading to WordPress 2.5 plus a new theme</title>
		<link>http://forumsblogswikis.com/2008/04/05/upgrading-to-wordpress-25-plus-a-new-theme/</link>
		<comments>http://forumsblogswikis.com/2008/04/05/upgrading-to-wordpress-25-plus-a-new-theme/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 18:45:04 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[releases]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/?p=252</guid>
		<description><![CDATA[Since it seems like every other blogger using WordPress has already mentioned it I figure it's about time I put up a post about the release of WordPress 2.5. While I'm at it I went ahead and upgraded this site to the new version of WP and changed themes to one called ProSense. I liked [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/04/05/upgrading-to-wordpress-25-plus-a-new-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bbPress 0.9 Released</title>
		<link>http://forumsblogswikis.com/2008/04/05/bbpress-09-released/</link>
		<comments>http://forumsblogswikis.com/2008/04/05/bbpress-09-released/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 14:54:07 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Forums]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bbpress]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[releases]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/2008/04/05/bbpress-09-released/</guid>
		<description><![CDATA[The bbPress folks have released version 0.9 of their forum software. It looks like the primary reason for the upgrade is so that those that have integrated bbPress and WordPress can upgrade to WordPress 2.5. There are also several new features including an installer, more RSS feeds, and Gravatar support. The bbPress site has the [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/04/05/bbpress-09-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GoCodes redirection plugin</title>
		<link>http://forumsblogswikis.com/2008/02/22/gocodes-redirection-plugin/</link>
		<comments>http://forumsblogswikis.com/2008/02/22/gocodes-redirection-plugin/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 14:31:17 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/2008/02/22/gocodes-redirection-plugin/</guid>
		<description><![CDATA[Have you ever needed to give out a URI from a blog post? Sure, you can do it, but the URIs are usually pretty long. And forget about it if you're saying it over the phone or on a podcast. A WordPress plugin called GoCodes looks like it may be able to help you out. [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/02/22/gocodes-redirection-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the WordPress post slug for SEO</title>
		<link>http://forumsblogswikis.com/2008/02/01/using-the-wordpress-post-slug-for-seo/</link>
		<comments>http://forumsblogswikis.com/2008/02/01/using-the-wordpress-post-slug-for-seo/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 05:00:13 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://forumsblogswikis.com/2008/02/01/using-the-wordpress-post-slug-for-seo/</guid>
		<description><![CDATA[WordPress makes it easy to have friendly URIs. Under the Options -> Permalinks tab you have several options. Of the options, I would suggest using one with %postname% as part of the URI. But why? If you read any web design blogs or forums you know that the words in the URI are important for [...]]]></description>
		<wfw:commentRss>http://forumsblogswikis.com/2008/02/01/using-the-wordpress-post-slug-for-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

