<?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>David Scott Tufts &#187; Web Development</title>
	<atom:link href="http://www.davidscotttufts.com/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidscotttufts.com</link>
	<description>Husband, Father of Six, and Web Developer</description>
	<lastBuildDate>Thu, 18 Mar 2010 16:26:33 +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 Custom Post Types in Wordpress 3.0</title>
		<link>http://www.davidscotttufts.com/2010/02/23/using-custom-post-types-in-wordpress-3-0/</link>
		<comments>http://www.davidscotttufts.com/2010/02/23/using-custom-post-types-in-wordpress-3-0/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 19:16:32 +0000</pubDate>
		<dc:creator>David Scott Tufts</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[custom post types]]></category>
		<category><![CDATA[post_type]]></category>
		<category><![CDATA[Wordpress 3.0]]></category>

		<guid isPermaLink="false">http://www.davidscotttufts.com/?p=110</guid>
		<description><![CDATA[So what is all of the buzz about custom post types in Wordpress 2.9 and 3.0?  What can we do with a &#8220;post_type&#8221; and why does it matter?  For some of us developers out there who have known the secret that Wordpress is actually much more than just a blogging platform this in [...]]]></description>
			<content:encoded><![CDATA[<p><strong>So what is all of the buzz about custom post types in Wordpress 2.9 and 3.0?  What can we do with a &#8220;post_type&#8221; and why does it matter?</strong>  For some of us developers out there who have known the secret that Wordpress is actually much more than just a blogging platform this in no big news.  To the rest of the developers out there this translates to &#8220;Wordpress is now a CMS&#8221; or something to that effect.</p>
<p>For some time now Wordpress has been more than just a blogging tool.  With a little bit of imagination Wordpress can be used not only as a CMS (Content Management System) but also as a PHP framework on which to launch complex web applications.  By simply allowing for developers to register any custom &#8220;post_type&#8221; Wordpress has made this task a whole lot easier for us.</p>
<p>This blog post will be a work in progress, Wordpress 3.0 is still in development at this time and not due to be launched for another couple of months.  As new options become available over the next couple of months I will continue to update this post to reflect the changes being made in the <a href="http://core.trac.wordpress.org/browser/trunk">nightly builds</a>.</p>
<ul>
<li>How do you plan on using custom post types in your Wordpress themes and plugins?</li>
<li>Will this change the way you currently use categories and tags to differentiate content types?</li>
<li>Does this help solidify in your mind that Wordpress is finally a CMS?</li>
</ul>
<p>Also, make sure to check out what <a href="http://justintadlock.com/archives/2010/02/02/showing-custom-post-types-on-your-home-blog-page">Justin Tadlock</a> has to say on this matter.</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="re0">$custom_post_types</span> = <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">add_action<span class="br0">&#40;</span><span class="st0">&#8216;init&#8217;</span>, <span class="st0">&#8216;init_custom_post_types&#8217;</span><span class="br0">&#41;</span>; </div>
</li>
<li class="li2">
<div class="de2"><span class="kw1">if</span><span class="br0">&#40;</span>!is_admin<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; add_filter<span class="br0">&#40;</span><span class="st0">&#8216;pre_get_posts&#8217;</span>, <span class="st0">&#8217;set_custom_post_types&#8217;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">function</span> init_custom_post_types<span class="br0">&#40;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#123;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; <a href="http://www.php.net/global"><span class="kw3">global</span></a> <span class="re0">$wpdb</span>, <span class="re0">$custom_post_types</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="co1">// Create a default custom &#8216;post_type&#8217; called custom_post_types.</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="co1">// This adds a &quot;Post Types&quot; UI panel in the admin and allows us</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="co1">// to create new post types on the fly just by adding a new post</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; <span class="co1">// through the admin interface.</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="re0">$post_type_args</span> = <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="st0">&#8216;label&#8217;</span>=&gt;__<span class="br0">&#40;</span><span class="st0">&#8216;Post Types&#8217;</span><span class="br0">&#41;</span>, </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="st0">&#8216;public&#8217;</span>=&gt;true,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="st0">&#8217;show_ui&#8217;</span>=&gt;true,</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; <span class="st0">&#8216;exclude_from_search&#8217;</span>=&gt;true</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; register_post_type<span class="br0">&#40;</span><span class="st0">&#8216;custom_post_types&#8217;</span>, <span class="re0">$post_type_args</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="co1">// If there are any posts with the &#8216;post_type&#8217; of custom_post_types</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; <span class="co1">// their names and titles will be returned and new &#8216;post_types&#8217; will</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="co1">// automatically be registered for each record.</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="re0">$sql</span> = <span class="st0">&quot;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="st0"> &nbsp; &nbsp;SELECT</span></div>
</li>
<li class="li1">
<div class="de1"><span class="st0"> &nbsp; &nbsp; &nbsp;{$wpdb-&gt;posts}.post_name,</span></div>
</li>
<li class="li2">
<div class="de2"><span class="st0"> &nbsp; &nbsp; &nbsp;{$wpdb-&gt;posts}.post_title</span></div>
</li>
<li class="li1">
<div class="de1"><span class="st0"> &nbsp;&nbsp; FROM </span></div>
</li>
<li class="li1">
<div class="de1"><span class="st0"> &nbsp; &nbsp; &nbsp;{$wpdb-&gt;posts}</span></div>
</li>
<li class="li1">
<div class="de1"><span class="st0"> &nbsp;&nbsp; WHERE</span></div>
</li>
<li class="li1">
<div class="de1"><span class="st0"> &nbsp; &nbsp; &nbsp;{$wpdb-&gt;posts}.post_type = &#8216;custom_post_types&#8217;</span></div>
</li>
<li class="li2">
<div class="de2"><span class="st0"> &nbsp; &nbsp; &nbsp;AND {$wpdb-&gt;posts}.post_status = &#8216;publish&#8217;&quot;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">foreach</span><span class="br0">&#40;</span><span class="re0">$post_types</span> = <span class="re0">$wpdb</span>-&gt;<span class="me1">get_results</span><span class="br0">&#40;</span><span class="re0">$sql</span><span class="br0">&#41;</span> <span class="kw1">as</span> <span class="re0">$post_type</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="co1">// Store a global array of custom post types for modifying the</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; <span class="co1">// search query to include the new post types we just registered</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="re0">$custom_post_types</span><span class="br0">&#91;</span><span class="re0">$post_type</span>-&gt;<span class="me1">post_name</span><span class="br0">&#93;</span> = <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="st0">&#8216;name&#8217;</span>=&gt;<span class="re0">$post_type</span>-&gt;<span class="me1">post_name</span>,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="st0">&#8216;title&#8217;</span>=&gt;<span class="re0">$post_type</span>-&gt;<span class="me1">post_title</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="br0">&#41;</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="re0">$post_type_args</span> = <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="st0">&#8216;taxonomies&#8217;</span>=&gt;array<span class="br0">&#40;</span><span class="st0">&#8216;post_tag&#8217;</span>,<span class="st0">&#8216;category&#8217;</span><span class="br0">&#41;</span>, </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="st0">&#8216;label&#8217;</span>=&gt;__<span class="br0">&#40;</span><span class="br0">&#40;</span>string<span class="br0">&#41;</span><span class="re0">$post_type</span>-&gt;<span class="me1">post_title</span><span class="br0">&#41;</span>, </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="st0">&#8216;public&#8217;</span>=&gt;true, </div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; &nbsp; <span class="st0">&#8217;show_ui&#8217;</span>=&gt;true, </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="st0">&#8216;exclude_from_search&#8217;</span>=&gt;false,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="st0">&#8216;register_meta_box_cb&#8217;</span>=&gt;<span class="st0">&#8216;init_custom_meta_boxes&#8217;</span>,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="st0">&#8216;_builtin&#8217;</span>=&gt;true,</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="st0">&#8217;supports&#8217;</span>=&gt;array<span class="br0">&#40;</span><span class="st0">&#8216;title&#8217;</span>,<span class="st0">&#8216;editor&#8217;</span>,<span class="st0">&#8216;thumbnail&#8217;</span>,<span class="st0">&#8216;excerpts&#8217;</span>,<span class="st0">&#8216;trackbacks&#8217;</span>,<span class="st0">&#8216;custom-fields&#8217;</span>,<span class="st0">&#8216;comments&#8217;</span>,<span class="st0">&#8216;author&#8217;</span>,<span class="st0">&#8216;revisions&#8217;</span><span class="br0">&#41;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; <span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; register_post_type<span class="br0">&#40;</span><span class="br0">&#40;</span>string<span class="br0">&#41;</span><span class="re0">$post_type</span>-&gt;<span class="me1">post_name</span>, <span class="re0">$post_type_args</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li2">
<div class="de2"><span class="kw2">function</span> set_custom_post_types<span class="br0">&#40;</span><span class="re0">$query</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <a href="http://www.php.net/global"><span class="kw3">global</span></a> <span class="re0">$custom_post_types</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="kw1">if</span><span class="br0">&#40;</span><span class="re0">$custom_post_types</span><span class="br0">&#41;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="co1">// Here we create an array of all valid post types</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="co1">// that we want to appear on the blog.</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="re0">$post_types</span> = <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span><span class="st0">&#8216;post&#8217;</span>, <span class="st0">&#8216;attachment&#8217;</span><span class="br0">&#41;</span>; <span class="co1">//&#8217;page&#8217;, </span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">foreach</span><span class="br0">&#40;</span><span class="re0">$custom_post_types</span> <span class="kw1">as</span> <span class="re0">$key</span>=&gt;<span class="re0">$post_type</span><span class="br0">&#41;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; <span class="re0">$post_types</span><span class="br0">&#91;</span><span class="br0">&#93;</span> = <span class="re0">$post_type</span><span class="br0">&#91;</span><span class="st0">&#8216;name&#8217;</span><span class="br0">&#93;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; </div>
</li>
<li class="li2">
<div class="de2">&nbsp; <span class="co1">// Now we modify the query to include the newly registed post types</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="re0">$query</span>-&gt;<span class="me1">set</span><span class="br0">&#40;</span><span class="st0">&#8216;post_type&#8217;</span>, <span class="re0">$post_types</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw1">return</span> <span class="re0">$query</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li2">
<div class="de2"><span class="kw2">function</span> init_custom_meta_boxes<span class="br0">&#40;</span><span class="re0">$args</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; add_meta_box<span class="br0">&#40;</span><span class="st0">&#8217;setcustommeta&#8217;</span>, __<span class="br0">&#40;</span><span class="st0">&#8216;Attributes&#8217;</span><span class="br0">&#41;</span>, <span class="st0">&#8217;set_custom_meta_boxes&#8217;</span>, <span class="re0">$args</span>-&gt;<span class="me1">post_type</span>, <span class="st0">&#8216;normal&#8217;</span>, <span class="st0">&#8216;core&#8217;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li2">
<div class="de2"><span class="kw2">function</span> set_custom_meta_boxes<span class="br0">&#40;</span><span class="re0">$post</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="co1">// add custom meta boxes</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.davidscotttufts.com/2010/02/23/using-custom-post-types-in-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Everything a Web Developer Needs to Get Started</title>
		<link>http://www.davidscotttufts.com/2009/04/10/everything-a-web-developer-needs-to-get-started/</link>
		<comments>http://www.davidscotttufts.com/2009/04/10/everything-a-web-developer-needs-to-get-started/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 19:10:45 +0000</pubDate>
		<dc:creator>David Scott Tufts</dc:creator>
				<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Free Resources]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.davidscotttufts.com/?p=66</guid>
		<description><![CDATA[Ever consider Web Development as a career? The following list of free resources will help you get up-and-running as a Web Developer.
PHP &#8211; Currently the most popular and widely used web development platform in         the world.  After starting my software/web development career several years ago in the [...]]]></description>
			<content:encoded><![CDATA[<p>Ever consider Web Development as a career? The following list of <em>free </em>resources will help you get up-and-running as a Web Developer.</p>
<p><a href="http://php.net/">PHP</a> &#8211; Currently the most popular and widely used web development platform in         the world.  After starting my software/web development career several years ago in the world of Microsoft, it was a relief to see that there was a simple solution out there that made far more sense (and was free).  PHP is also the &#8220;P&#8221; in LAMP, which is an acronym for Linux, Apache, MySQL, and PHP &#8211; a combination of technologies forming an open source development environment.<a href="http://www.apachefriends.org/en/xampp.html"><br />
XAMPP</a> &#8211; Configuring a web development environment couldn&#8217;t be easier, with XAMPP a development server can be up and running within a half hour instead of several hours.  It installs and configures PHP, MySQL, and Apache on your operating system.<a href="http://www.pspad.com/"><br />
PSPad</a> &#8211; There are <a href="http://www.info4php.com/?req=PHP_Editors">many great text editors</a> out there, I just happen to prefer PSPad.<a href="http://www.mozilla.com/en-US/firefox/firefox.html"><br />
FireFox </a>– A browser that can be extended by installing web developer friendly plugins, here are my favorites:</p>
<ul>
<li><a href="http://getfirebug.com/">Firebug</a> &#8211; Allows you to edit, debug, and monitor CSS, HTML, and JavaScript live in any web page</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer Toolbar</a> &#8211; Adds a menu and a toolbar with various web developer tools</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/539">MeasureIt</a> &#8211; Draw out a ruler to get the pixel width and height of any elements on a webpage</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/271">ColorZilla</a> &#8211; Advanced eyedropper, color picker, page zoomer and more</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/249">HTML Validator</a> &#8211; Adds HTML validation inside Firefox</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/4106">Operator</a> &#8211; Finds <a href="http://microformats.org/">microformats </a>and other semantic data that are on many web pages</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1146">ScreenGrab</a> &#8211; Captures an image of what you can see in the window, the entire page, just a selection</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/5369">YSlow</a> &#8211; Analyzes web pages and tells you why they&#8217;re slow based on <a href="http://developer.yahoo.com/performance/index.html#rules">Yahoo&#8217;s high performance rules</a></li>
</ul>
<p><a href="http://jquery.com/">jQuery</a> – A JavaScript library and AJAX utility.<br />
<a href="http://wordpress.org/">Wordpress</a> and <a href="http://mu.wordpress.org/">WordPress MU</a> &#8211; Blogging tools and CMS publishing platforms. (not just for blogs anymore)<br />
<a href="http://tinymce.moxiecode.com/">TinyMCE</a> – A JavaScript WYSIWYG editor for content entry on your websites.<br />
<a href="http://phpmailer.codeworxtech.com/">phpMailer</a> – An advanced PHP class for sending emails from your web applications.<br />
<a href="http://swfupload.org/">SWFUploader</a> – A multi-file flash uploading tool for your website.<br />
<a href="http://www.famfamfam.com/lab/icons/silk/">Silk Icons</a> – 1000 free web icons.<br />
<a href="http://www.gimp.org/">Gimp</a> – A free image editing tool which is a great alternative to Adobe&#8217;s Photoshop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidscotttufts.com/2009/04/10/everything-a-web-developer-needs-to-get-started/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
