<?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>Free wordpress themes and website templates from freeweblooks.com &#187; Tips and tutorials</title>
	<atom:link href="http://freeweblooks.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://freeweblooks.com</link>
	<description>Download free website templates and wordpress themes from freeweblooks.com</description>
	<lastBuildDate>Sun, 05 Feb 2012 14:50:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Blogmeans</title>
		<link>http://freeweblooks.com/blogmeans/</link>
		<comments>http://freeweblooks.com/blogmeans/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 08:27:55 +0000</pubDate>
		<dc:creator>WPMOLE</dc:creator>
				<category><![CDATA[Wordpress Theme tutorials]]></category>
		<category><![CDATA[black]]></category>
		<category><![CDATA[blue]]></category>
		<category><![CDATA[brown]]></category>
		<category><![CDATA[custom colors]]></category>
		<category><![CDATA[custom-menu]]></category>
		<category><![CDATA[Fixed width]]></category>
		<category><![CDATA[green]]></category>
		<category><![CDATA[right sidebar]]></category>
		<category><![CDATA[them]]></category>
		<category><![CDATA[two columns]]></category>

		<guid isPermaLink="false">http://freeweblooks.com/blogmeans/</guid>
		<description><![CDATA[Blogmeans is modern website with blog tips, blog tools and WordPress templates which can be used on blogs. Theme markup is convenient for your visitors to concentrate on content. Different features give you unlimited possibilities when you set blog configuration.]]></description>
			<content:encoded><![CDATA[<p>Blogmeans is modern website with blog tips, blog tools  and WordPress templates which can be used on blogs. Theme markup is convenient for your visitors to concentrate on content. Different features give you unlimited possibilities when you set blog configuration.</p>
]]></content:encoded>
			<wfw:commentRss>http://freeweblooks.com/blogmeans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chameleon faq</title>
		<link>http://freeweblooks.com/chameleon-faq/</link>
		<comments>http://freeweblooks.com/chameleon-faq/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 23:43:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips and tutorials]]></category>
		<category><![CDATA[Black addon for Chameleon theme]]></category>

		<guid isPermaLink="false">http://freeweblooks.com/?p=646</guid>
		<description><![CDATA[Please post any bugs, feature requests or questions here. A black addon is now available for download. Download the addon ( Installation instructions are included )]]></description>
			<content:encoded><![CDATA[<p>Please post any bugs, feature requests or questions here.</p>
<p>A black addon is now available for download.</p>
<div class="wp-caption alignleft" style="width: 410px"><a href="http://freeweblooks.com/chameleon-version-2/"><img title="black addon" src="http://freeweblooks.com/wp-content/uploads/c1-black.jpg" alt="" width="400" height="300" /></a><p class="wp-caption-text">Black version</p></div>
<p><a title="downloa link for Chameleon black addon" href="http://freeweblooks.com/downloads/Chameleon_black_addon.zip">Download the addon</a> ( Installation instructions are included )</p>
]]></content:encoded>
			<wfw:commentRss>http://freeweblooks.com/chameleon-faq/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Custom category templates</title>
		<link>http://freeweblooks.com/custom-category-templates/</link>
		<comments>http://freeweblooks.com/custom-category-templates/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 08:19:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips and tutorials]]></category>

		<guid isPermaLink="false">http://freeweblooks.com/?p=516</guid>
		<description><![CDATA[From time to time you may want to use specific templates for certain types of post. I have tried a few plugins that claim to do this for you but I have not found them to be to reliable. Before starting its always a good idea to make backups of your main theme php files just in case a mistake is made. To begin open your single.php file. If your theme does not have one then open your index.php file and save it as single.php. Now save your single.php file as single-default.php ( this will become your default post template ) After thats done open single.php in code view and delete everything on the page replacing it with In the example above all post in category 1 will be directed to template1.php , all post in category 2 will be directed to template-2.php and finally all others will use the single-default.php template. You can add as many catagory templates as you like just be sure not to remove the last else statement for defaults. Now open your single.php file again and save it as template-1.php or whatever you need to name it and modify it to fit the post category specs and repeat the process for each post category template you need.]]></description>
			<content:encoded><![CDATA[<p><strong>From time to time you may want to use specific templates for certain types of post.<br />
</strong>I have tried a few plugins that claim to do this for you but I have not found them to be to reliable.<br />
Before starting its always a good idea to make backups of your main theme php files just in case a mistake is made.</p>
<p>To begin open your single.php file.<br />
If your theme does not have one then open your index.php file and save it as single.php.</p>
<p>Now save your single.php file as single-default.php<br />
( this will become your default post template )</p>
<p><strong>After thats done open single.php in code view and delete everything on the page replacing it with<br />
</strong></p>
<pre class="brush:php">
<?php $post = $wp_query->post;
  if ( in_category('1') ) {
  include(TEMPLATEPATH . '/template-1.php');
  } elseif ( in_category('2') ) {
  include(TEMPLATEPATH . '/template-2.php');
  } else {
  include(TEMPLATEPATH . '/single-default.php');
  } ?></pre>
<p>In the example above all post in category 1 will be directed to template1.php , all post in category 2 will be directed to template-2.php and finally all others will use the single-default.php template.</p>
<p>You can add as many catagory templates as you like just be sure not to remove the last else statement for defaults.</p>
<p>Now open your single.php file again and save it as template-1.php or whatever you need to name it and modify it to fit the post category specs and repeat the process for each post category template you need.</p>
]]></content:encoded>
			<wfw:commentRss>http://freeweblooks.com/custom-category-templates/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

