<?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>The Blog House&#187; WordPress Archives  // The Blog House</title>
	<atom:link href="http://thebloghouse.com/blog/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://thebloghouse.com</link>
	<description>we know WordPress</description>
	<lastBuildDate>Mon, 26 Jul 2010 17:56:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Customize Twenty Ten</title>
		<link>http://thebloghouse.com/blog/wordpress/tutorials/customize-twenty-ten/</link>
		<comments>http://thebloghouse.com/blog/wordpress/tutorials/customize-twenty-ten/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 23:50:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Customise Twenty Ten]]></category>
		<category><![CDATA[Customize Twenty Ten]]></category>
		<category><![CDATA[Twenty Ten Theme]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=914</guid>
		<description><![CDATA[Twenty Ten is the new default theme for WordPress 3.0 and makes great use of all the new features this new major release brings so it seems to make sense to start with this as a base for your next WordPress based project&#8217;s theme yeah? Well before you start jumping in and hacking the code [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Ftutorials%2Fcustomize-twenty-ten%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Ftutorials%2Fcustomize-twenty-ten%2F" height="61" width="51" /></a></div><h2><a href="http://thebloghouse.com/files/2010/06/Twenty-Ten-WordPress-Theme.jpg" rel="lightbox[914]"><img class="size-full wp-image-901 aligncenter" title="Twenty Ten Theme" src="http://thebloghouse.com/files/2010/06/Twenty-Ten-WordPress-Theme.jpg" alt="Twenty Ten WordPress Theme" width="470" height="175" /></a></h2>
<p>Twenty Ten is the new default theme for WordPress 3.0 and makes great use of all the new features this new major release brings so it seems to make sense to start with this as a base for your next WordPress based project&#8217;s theme yeah?</p>
<p>Well before you start jumping in and hacking the code you need to realise Twenty Ten is in fact a <strong>Parent Theme</strong> and you can make ALL your required CSS / Function and Template modifications in a subdirectory so when the main Twenty Theme is updated all those tweaks and hacks won&#8217;t be lost for ever &#8211; cool ay?</p>
<p>Of course WordPress do a great job of explaining how to start working with Child Themes using Twenty Ten as the base <a title="Child themes" href="http://codex.wordpress.org/Child_Themes" target="_blank">here</a> but we thought we would summarise our take on this for those who need the bare minimum to get started:  Got your favourite PHP / CSS editor ready? Great let&#8217;s begin&#8230;</p>
<h3>How to set up your directory should be set up</h3>
<p>The most important aspect of getting your new child theme working is making sure you have the required files in the correct place like this:</p>
<ul>
<li> <strong>web root</strong>
<ul>
<li> <span style="color: #ff0000;"><strong>wp-content</strong></span>
<ul>
<li> <span style="color: #ff0000;"><strong>themes</strong></span> (directory where all your themes are)
<ul>
<li> <span style="color: #ff0000;"><strong>twentyten</strong></span> (directory where the Twenty Ten Theme is)</li>
<li> <span style="color: #ff0000;"><strong>your-new-twentyten-child</strong></span> (directory of your new child  theme &#8211; you can call this anything!)
<ul>
<li> <span style="color: #ff0000;"><strong>style.css</strong> </span>(the only 100% required file in a child theme which <strong>must be named <em>style.css</em></strong>)</li>
<li><strong>functions.php</strong> &#8211; this is optional but is the place to add new functions to your theme. It is <strong>loaded in addition to the parent’s functions.php</strong> and right <em>before</em> the parent’s file.</li>
<li><strong>header.php</strong>, <strong>index.php</strong> etc &#8211; Again you don&#8217;t need these but the best thing to do is make a copy of the original Twenty Ten Theme files you want to modify and store them here. Then edit these copies to remove things that you cannot do via the nice new options within the WordPress Admin area and be safe in the knowledge you can always just delete your copies to get back to the Twenty Ten Originals</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h3>What needs to be in the child style.css file as a bare minimum</h3>
<p>The following is the standard</p>
<pre>/*
Theme Name:     My Twenty Ten Child
Theme URI:      http: //thebloghouse.com
Description:    My child theme for the Twenty Ten theme
Author:                Andy
Author URI:     http: //thebloghouse.com
Template:       twentyten
Version:        0.1.0
*/

@import url("../twentyten/style.css");

/* The following CSS is our example - you do not need to change your site's title link colour */

#site-title a {
    color: #009900;
}
</pre>
<h3>Seems easy enough yeah?</h3>
<p>Only thing you need to watch out for is if you want to say change the way Twenty Ten deals with certain CSS values you need to make sure you copy the full original CSS into your style CSS and change each value. By this we mean say you want to change the nice new Twenty Ten footer. You would find the following in the original style.css and copy this to your style.css file:</p>
<pre>#colophon {
 border-top: 2pt solid #000;
 }</pre>
<p>However simply removing the <em><strong>border-top: 2pt solid #000;</strong></em> part will <strong>NOT</strong> remove the border &#8211; you would need to have the following <strong><em>none</em></strong> value to override the original style.css:</p>
<pre>#colophon {
 border-top: <span style="color: #ff0000;"><strong>none</strong></span>;
 }</pre>
<p>Obviously this is a very quick and simplistic look at the great work that everyone who has worked on and contributed to WordPress 3.0 and the Twenty Ten theme but if you are struggling with the basics hopefully the info above might help.</p>
<p>If not I would suggest reading the documentation again <a title="Child themes" href="http://codex.wordpress.org/Child_Themes" target="_blank">here</a>, check out the 1 hour + video below by Steve Bruner and his WordPress 3.0 Customization Techniques or feel free to post a question in the comments below.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="guid=cYSkh46r&amp;width=640&amp;height=360&amp;locksize=no&amp;dynamicseek=false&amp;qc_publisherId=p-18-mFEk4J448M" /><param name="src" value="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" /><param name="wmode" value="transparent" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" allowfullscreen="true" wmode="transparent" flashvars="guid=cYSkh46r&amp;width=640&amp;height=360&amp;locksize=no&amp;dynamicseek=false&amp;qc_publisherId=p-18-mFEk4J448M"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/wordpress/tutorials/customize-twenty-ten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Events Plugin with full PayPal integration</title>
		<link>http://thebloghouse.com/blog/wordpress/plugins/free-events-plugin-with-full-paypal-integration/</link>
		<comments>http://thebloghouse.com/blog/wordpress/plugins/free-events-plugin-with-full-paypal-integration/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 10:35:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Event Plugin]]></category>
		<category><![CDATA[Free Events Plugin]]></category>
		<category><![CDATA[Online payment plugin]]></category>
		<category><![CDATA[PayPal]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=879</guid>
		<description><![CDATA[This is just a quick heads up to anyone that is looking for a WordPress Plugin that handles event registrations with or without online payments. Advanced Events Registration by Seth Shoultes is FREE in it&#8217;s basic (still advanced) form and allows you to take online registrations for events, meetings, conference and seminars etc and accept [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Fplugins%2Ffree-events-plugin-with-full-paypal-integration%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Fplugins%2Ffree-events-plugin-with-full-paypal-integration%2F" height="61" width="51" /></a></div><p>This is just a quick heads up to anyone that is looking for a <a title="WordPress Plugin Development" href="http://thebloghouse.com/wordpress/plugins/">WordPress Plugin</a> that handles event registrations with or without online payments.</p>
<p><a title="Free Events Registration and Payment Plugin" href="http://wordpress.org/extend/plugins/advanced-events-registration/" target="_blank">Advanced Events Registration</a> by <a title="Seth Shoultes" href="http://shoultes.net/" target="_blank">Seth Shoultes</a> is FREE in it&#8217;s basic (still advanced) form and allows you to take online registrations for events, meetings, conference and seminars etc and accept PayPal payments for these.</p>
<p>It also allows you to capture the registering persons contact information  to the WordPress database as well as provides the ability to send the  registrar to your PayPal payment site for online collection of event  fees. PayPal payments are captured to the database using the PayPal  Standard IPN.</p>
<p>Reporting features provide a list of events, list of attendees, and  the ability to export all attendees AND any answers they have given to custom questions to Excel (.CSV). We highly recommend you check it out.<br />
<a href="http://thebloghouse.com/files/2010/04/Advanced-Events-Registration-Plugin.jpg" rel="lightbox[879]"><img title="Advanced Events Registration Plugin" src="http://thebloghouse.com/files/2010/04/Advanced-Events-Registration-Plugin.jpg" alt="Advanced Events Registration Plugin" width="750" height="299" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/wordpress/plugins/free-events-plugin-with-full-paypal-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Override WordPress Shortcode to show [ ] brackets</title>
		<link>http://thebloghouse.com/blog/asides/override-wordpress-shortcode-to-show-brackets/</link>
		<comments>http://thebloghouse.com/blog/asides/override-wordpress-shortcode-to-show-brackets/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 21:43:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[brackets]]></category>
		<category><![CDATA[override]]></category>
		<category><![CDATA[shortcode]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=865</guid>
		<description><![CDATA[Override the default WordPress Shortcode processing to show [ ] brackets for your plugin shortcode examples]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fasides%2Foverride-wordpress-shortcode-to-show-brackets%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fasides%2Foverride-wordpress-shortcode-to-show-brackets%2F" height="61" width="51" /></a></div><p>Just came across an annoying issue where we needed to show some examples of our new <a title="WordPress Price Comparison Plugin" href="http://comparepress.com/" target="_blank">WordPress price comparison plugin</a> WordPress on a site that has the plugin installed which means everytime you try to show the examples you get the plugin content!</p>
<p>The easiest way we have found to fix this is do the following:</p>
<p>Use the following numeric character references instead of normal [ ] as this way WordPress doesn&#8217;t process your plugins shortcode</p>
<p>e.g. &amp;#91;showphones make=&#8217;htc&#8217; &amp;#93; is the same as [showphones make='htc']</p>
<p>So just remember to replace [ with &amp;#91; and ] with &amp;#93;</p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/asides/override-wordpress-shortcode-to-show-brackets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress App for Google Android</title>
		<link>http://thebloghouse.com/blog/wordpress/news/wordpress-app-for-google-android/</link>
		<comments>http://thebloghouse.com/blog/wordpress/news/wordpress-app-for-google-android/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 19:33:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[google android]]></category>
		<category><![CDATA[google wordpress app]]></category>
		<category><![CDATA[wordpress android]]></category>
		<category><![CDATA[wordpress app]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=625</guid>
		<description><![CDATA[WordPress have just relased a fine looking App for Google Android mobile phones. The initial release has focused on giving you the ability to manage your blog while on the go. Features include the ability to: Configure and manage multiple blogs Comment moderation including the ability to reply to comments Create and Edit Posts including [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Fnews%2Fwordpress-app-for-google-android%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Fnews%2Fwordpress-app-for-google-android%2F" height="61" width="51" /></a></div><p><a href="http://thebloghouse.com/files/2010/02/WordPress-Android-App.jpg" rel="lightbox[625]"><img class="alignright" title="WordPress-Android-App" src="http://thebloghouse.com/files/2010/02/WordPress-Android-App.jpg" alt="WordPress Android App" width="470" height="175" /></a>WordPress have just relased a fine looking App for Google Android mobile phones.</p>
<p>The initial release has focused on giving you the ability to manage  your blog while on the go.</p>
<p>Features include the ability to:</p>
<ul>
<li>Configure and manage multiple blogs</li>
<li>Comment moderation including the ability to reply to comments</li>
<li>Create and Edit Posts including categories, tags and photos</li>
<li>Create and Edit Pages</li>
<li>Get notified of new comments in the Android notification bar</li>
</ul>
<p>Here is a brief video showing the app in action:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="guid=73jyWIka&amp;width=640&amp;height=360&amp;qc_publisherId=p-18-mFEk4J448M" /><param name="src" value="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.15" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="360" src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.15" allowfullscreen="true" flashvars="guid=73jyWIka&amp;width=640&amp;height=360&amp;qc_publisherId=p-18-mFEk4J448M"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/wordpress/news/wordpress-app-for-google-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking for a complete WordPress book?</title>
		<link>http://thebloghouse.com/blog/wordpress/books/looking-for-a-complete-wordpress-book/</link>
		<comments>http://thebloghouse.com/blog/wordpress/books/looking-for-a-complete-wordpress-book/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 09:21:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Digging Into WordPress]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress book]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=564</guid>
		<description><![CDATA[Someone asked us to recommend a WordPress book that wasn&#8217;t for newbies but also wasn&#8217;t almost written in binary and we think the best book that fits this middle of the WordPress road position is the great Digging Into WordPress book which is available in both print AND pdf form. Written by Chris Coyier and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Fbooks%2Flooking-for-a-complete-wordpress-book%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Fwordpress%2Fbooks%2Flooking-for-a-complete-wordpress-book%2F" height="61" width="51" /></a></div><div id="attachment_565" class="wp-caption alignright" style="width: 160px"><a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=102983" target="ejejcsingle"><img class="size-thumbnail wp-image-565 " title="Digging into WordPress" src="http://thebloghouse.com/files/2010/01/realbook-150x150.png" alt="Digging into WordPress" width="150" height="150" /></a><p class="wp-caption-text">Digging into WordPress - best WordPress book around currently?</p></div>
<p>Someone asked us to recommend a WordPress book that wasn&#8217;t for newbies but also wasn&#8217;t almost written in binary and we think the best book that fits this middle of the WordPress road position is the great Digging Into WordPress book which is available in both print AND pdf form.</p>
<p>Written by <a title="Learn more about author Chris Coyier" href="http://digwp.com/chris-coyier/" target="ejejcsingle">Chris Coyier</a> and <a title="Learn more about author Jeff Starr" href="http://digwp.com/jeff-starr/" target="ejejcsingle">Jeff Starr</a> the pdf version comes with a lifetime subscription meaning you will be emailed ALL updated versions of the book for free &#8211; pretty cool.</p>
<p><a href="https://www.e-junkie.com/ecom/gb.php?cl=88539&amp;c=ib&amp;aff=102983" target="ejejcsingle">Click here to find out more Digging Into WordPress</a></p>
<p>NOTE: We have added an affiliated link above so we will makes a few $ if you buy via this but honestly we are not linking to this for a few $ but because we think this book is currently the best WordPress book around.</p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/wordpress/books/looking-for-a-complete-wordpress-book/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ShareMyPlaylists.com</title>
		<link>http://thebloghouse.com/blog/featured/sharemyplaylists/</link>
		<comments>http://thebloghouse.com/blog/featured/sharemyplaylists/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 17:29:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://thebloghouse.com/?p=336</guid>
		<description><![CDATA[The Blog House are pleased to finally detail the work we have been doing with ShareMyPlaylists.com which is THE Spotify community site.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Ffeatured%2Fsharemyplaylists%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fthebloghouse.com%2Fblog%2Ffeatured%2Fsharemyplaylists%2F" height="61" width="51" /></a></div><p><a href="http://thebloghouse.com/files/2009/08/ShareMyPlaylists.com-logo.jpg" rel="lightbox[336]"><img class="alignright size-full wp-image-449" title="ShareMyPlaylists.com-logo" src="http://thebloghouse.com/files/2009/08/ShareMyPlaylists.com-logo.jpg" alt="ShareMyPlaylists.com logo" width="150" height="150" /></a>The Blog House are pleased to finally detail the work we did with <a href="http://sharemyplaylists.com/">ShareMyPlaylists.com</a> which is THE <a title="What is Spotify?" href="http://thebloghouse.com/blog/random/what-is-spotify/" target="_blank">Spotify</a> community site:</p>
<p>We approached the owner of ShareMyPlaylists.com with a proposal after coming across the first version of the site during our web travels and realising there was massive potential to improve the initial site by extending it&#8217;s initial WordPress based roots.</p>
<p>After a few chats The Blog House won the contract to take the site from it&#8217;s standard WordPress launch form to a new <a title="WordPress MU" href="http://thebloghouse.com/wordpress/mu/" target="_blank">WordPress MU</a> &amp; <a title="BuddyPress" href="http://thebloghouse.com/wordpress/buddypress/" target="_blank">BuddyPress</a> version to enable a whole new level of user interaction and functionality.</p>
<blockquote><p>&#8220;The Blog House were crucial in taking ShareMyPlaylists.com from it&#8217;s first incarnation to the social networking music site it is today.&#8221;</p></blockquote>
<p>The initial development and testing of the site took about 8 weeks and the site received great feedback from the early beta testers we trialled the site with. The initial social networking infrastructure of the site didn&#8217;t look too far removed from the standard clean BuddyPress templates (this was deliberate) but behind the scenes there were and still are many custom <a title="WordPress Plugins" href="http://thebloghouse.com/wordpress/plugins/" target="_blank">WordPress plugins</a> that The Blog House have written as well as a great deal of custom server side code to keep the site running as smoothly as possible.</p>
<p>During the first 3 weeks of the launch of the new Blog House version of the site, ShareMyPlaylists.com&#8217;s daily traffic increased by a factor of 4, over 4000 people created accounts and the owner of the site signed up to have The Blog House manage all his WordPress, server and technical needs. Since this successful version 2 launch ShareMyPlaylists.com has grown even further and we handed the maintenance and design over to another development agency to manage full time.</p>
<p>If you are looking for a company to help you take your WordPress based web site to the next level then <a title="Contact The Blog House" href="http://thebloghouse.com/contact/" target="_self">get in touch.</a></p>
<p>The Blog House</p>
]]></content:encoded>
			<wfw:commentRss>http://thebloghouse.com/blog/featured/sharemyplaylists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->