<?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>Framework Templates</title>
	<atom:link href="http://www.framework-templates.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.framework-templates.com</link>
	<description>For WordPress Development</description>
	<lastBuildDate>Thu, 04 Mar 2010 05:15:26 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Chris Coyier&#8217;s Blank WordPress Theme</title>
		<link>http://www.framework-templates.com/wordpress/chris-coyiers-blank-wordpress-theme/</link>
		<comments>http://www.framework-templates.com/wordpress/chris-coyiers-blank-wordpress-theme/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 05:15:26 +0000</pubDate>
		<dc:creator>christine</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.framework-templates.com/?p=297</guid>
		<description><![CDATA[In case you missed it, a few weeks ago, Chris Coyer, one of the authors of &#8220;Digging into WordPress&#8220;, released his blank theme. In his article he states the following:
I have a “blank” WordPress theme for myself, because I make a lot of WordPress themes. Starting from Kubrick, or any other pre-made theme, would be [...]]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, a few weeks ago, <a href="http://chriscoyier.net/">Chris Coyer</a>, one of the authors of &#8220;<a href="http://digwp.com/">Digging into WordPress</a>&#8220;, released <a href="http://digwp.com/2010/02/blank-wordpress-theme/">his blank theme</a>. In his article he states the following:</p>
<blockquote><p>I have a “blank” WordPress theme for myself, because I make a lot of WordPress themes. Starting from Kubrick, or any other pre-made theme, would be absurd. There is to much stuff there that would have to be stripped out or fought against to be useful. So, I have my own.</p></blockquote>
<p>Music to my ears. When I started using WordPress years ago, I couldn&#8217;t get my head around Kubrick. Cleaning the code took way too much time and energy. I originally created my themes for a WordPress class. In order to teach students how to theme a site in 6 weeks, I needed something clean and void of excess stuff so I set up my <a href="http://www.framework-templates.com/templates/#basic">basic theme</a>.</p>
<p>I was thus curious when I read Chris&#8217;s article and downloaded his theme. It&#8217;s super clean and to my delight it&#8217;s not so different from mine. I have a lot more CSS than he does and he&#8217;s got some fancy stuff going on in his <code>header.php</code>, but overall I would highly recommend it. Starting from a clean theme to design a WordPress site is the best way to work. If you haven&#8217;t had a chance to try a blank theme, you should check it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.framework-templates.com/wordpress/chris-coyiers-blank-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add unique styles to your pages using the body_class() function</title>
		<link>http://www.framework-templates.com/tips-and-tricks/add-unique-styles-to-your-pages-using-the-body_class-function/</link>
		<comments>http://www.framework-templates.com/tips-and-tricks/add-unique-styles-to-your-pages-using-the-body_class-function/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 20:29:12 +0000</pubDate>
		<dc:creator>christine</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.framework-templates.com/?p=291</guid>
		<description><![CDATA[When WordPress 2.8 was released, a new function called body_class() was made available to developers allowing us to style our pages differently. This new function places a location-specific class on the opening &#60;body&#62; tag. I must admit, I missed this function when it came out and only discovered it recently. But it&#8217;s proved very useful. [...]]]></description>
			<content:encoded><![CDATA[<p>When WordPress 2.8 was released, a new function called <code>body_class()</code> was made available to developers allowing us to style our pages differently. This new function places a location-specific class on the opening <code>&lt;body&gt;</code> tag. I must admit, I missed this function when it came out and only discovered it recently. But it&#8217;s proved very useful. I can now specify different background images for my pages and posts. </p>
<p><strong>Here&#8217;s how to do it. </strong></p>
<p>Open up your <code>header.php</code> file and change <code>&lt;body&gt;</code> to <code>&lt;body &lt;?php body_class(); ?&gt;&gt;</code></p>
<p>The function will automatically generate extra html code. Have a look at the source code to see what classes are available to you and simply create new styles.</p>
<p>For example if you have an about page which has a page id equal to 2, you will notice the following code:</p>
<p><code>&lt;body class="page page-id-2"&gt;</code></p>
<p>In your css, you could add a new style such as</p>
<p><code>body.page {background:yellow;}</code></p>
<p>This would change the background of all your pages to yellow.</p>
<p>Or</p>
<p><code>body.page-id-2 {background:yellow;}</code></p>
<p>And now the yellow background will only be applied to your about page.</p>
<p><a href="http://www.nathanrice.net/blog/wordpress-2-8-and-the-body_class-function/">Nathan Rice</a> wrote up a great article about the body_class() function and you can, of course, get more information by visiting the <a href="http://codex.wordpress.org/Template_Tags/body_class">Codex</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.framework-templates.com/tips-and-tricks/add-unique-styles-to-your-pages-using-the-body_class-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a sidebar menu using the Simple Section Navigation Plugin</title>
		<link>http://www.framework-templates.com/wordpress/create-sidebar-menu/</link>
		<comments>http://www.framework-templates.com/wordpress/create-sidebar-menu/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 00:08:54 +0000</pubDate>
		<dc:creator>christine</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.framework-templates.com/?p=281</guid>
		<description><![CDATA[One of the best feature of WordPress is its ability to be used as a powerful CMS. However, since WordPress is a blogging platform and not a true CMS, there are a few drawbacks, especially when building sites with deep navigation levels.
I was recently asked by a colleague to help develop a very large site [...]]]></description>
			<content:encoded><![CDATA[<p>One of the best feature of WordPress is its ability to be used as a powerful CMS. However, since WordPress is a blogging platform and not a true CMS, there are a few drawbacks, especially when building sites with deep navigation levels.</p>
<p>I was recently asked by a <a href="http://thrivewire.ca/about/">colleague</a> to help develop a very large site for a Vancouver organization. The site wasn&#8217;t very complicated, but contained several dozens of pages four levels deep. The first levels were displayed as a top horizontal navigation bar, while the others appear in the sidebar depending on which page you are on.</p>
<p>Listing pages can easily by done by using the built in <a href="http://codex.wordpress.org/Template_Tags/wp_list_pages">wp_list_pages() function</a>, but this function lists all of the pages, regardless of where you are on the site. This function is ideal if you&#8217;re creating a sitemap, but not that useful for a side navigation.</p>
<p>As mentioned in an <a href="http://www.framework-templates.com/plugins/collapsable-navigation-with-the-fold-page-list-plugin/">earlier post</a>, the fold page list plugin can be used to generate a stylish side menu, but this still leaves us with no control as to what is displayed on what page.</p>
<p>For example, when one navigates to the About pages,it would be nice to view the pages which are children of about, while on the services, the children of services are displayed.</p>
<p>This can be achieved by using the <a href="http://wordpress.org/extend/plugins/simple-section-navigation/">simple section navigation plugin</a> created by <a href="http://www.cmurrayconsulting.com">C Murray Consulting</a>. Simply download and activate the plugin as you would any other and add this line of code to your sidebar:</p>
<pre><code>&lt;?php simple_section_nav("&lt;h2&gt;","&lt;/h2&gt;") ?&gt;</code></pre>
<p>You can view this plugin in action by visiting the <a href="http://brochure1.framework-templates.com/about/">brochure I demo</a> site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.framework-templates.com/wordpress/create-sidebar-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a custom page template in WordPress</title>
		<link>http://www.framework-templates.com/wordpress/creating-a-custom-page-template/</link>
		<comments>http://www.framework-templates.com/wordpress/creating-a-custom-page-template/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 15:21:17 +0000</pubDate>
		<dc:creator>christine</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.framework-templates.com/?p=164</guid>
		<description><![CDATA[While designing your WordPress site, you may want to create a page that&#8217;s different from your other pages and posts. I&#8217;ve created many websites which have a custom home page, portfolio section,  site map etc&#8230; WordPress allows you to create custom templates in a few simple steps:

Open up your page.php or index.php and add the [...]]]></description>
			<content:encoded><![CDATA[<p>While designing your WordPress site, you may want to create a page that&#8217;s different from your other pages and posts. I&#8217;ve created many websites which have a custom home page, portfolio section,  site map etc&#8230; WordPress allows you to create custom templates in a few simple steps:</p>
<ol>
<li>Open up your page.php or index.php and add the following code at the very top of your page:
<pre><code>&lt;?php
/*
Template Name: Name of your Template
*/
?&gt;</code></pre>
</li>
<li> Save your your file as new-template-name.php (you may want to use portfolio.php, sitemap.php, etc..)</li>
<li> Upload your file in your themes directory</li>
<li> In your WordPress admin, edit the page that you want custom and select the newly created template from your &#8220;Template&#8221; drop down which is found under &#8220;Attibutes&#8221;</li>
</ol>
<p>That&#8217;s all it takes to create the template, but now you will need to customize it to make it look different from your other pages. You may want to have a different background, dimension, etc&#8230;</p>
<p><span id="more-164"></span></p>
<h4>Examples of Custom Pages</h4>
<p><strong>Sitemap</strong></p>
<p>If you take a look at the site map on <a href="http://www.outofchaos.ca/site-map/">Out of Chaos</a>&#8217;s website, you will find a list of all of the pages. This page could have be created simply by inserting an unordered list in the editor, but if we do it that way, then we&#8217;ll need to update it every time a new page is added or deleted. An easier way to generate the list is to use a custom template.</p>
<p>The site map template was created by using the following code:</p>
<pre><code>&lt;?php
/*
Template Name: Sitemap Template
*/
?&gt;
&lt;?php get_header(); ?&gt;
&lt;div id="content"&gt;
&lt;div id="right"&gt;
&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;?php wp_list_pages('sort_column=menu_order&amp;exclude=25&amp;title_li'); ?&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;?php get_sidebar(); ?&gt;
&lt;/div&gt;
&lt;?php get_footer(); ?&gt;</code></pre>
<p>The code above grabs the title of the sitemap page and then generates a list of all of the pages and excludes itself.</p>
<p><strong>Custom Home Page</strong><br />
You&#8217;ll notice that both <a href="http://www.bluelimemedia.com">Bluelime Media</a> and <a href="http://www.framework-templates.com">Framework Templates</a>&#8216; home pages are different from the rest of the other pages. To do this I created a custom home page using the following code:</p>
<pre><code>&lt;?php
/*
Template Name: Home Template
*/
?&gt;
&lt;?php get_header();?&gt;
&lt;div id="content_home"&gt;
&lt;div class="intro"&gt;
&lt;?php if(function_exists('iinclude_page')) iinclude_page(256); ?&gt;
&lt;/div&gt;
&lt;div class="featured"&gt;
&lt;h2&gt;RECENT PROJECTS&lt;/h2&gt;
&lt;?php if(function_exists('iinclude_page')) iinclude_page(284); ?&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id="sidebar_home"&gt;
&lt;?php if(function_exists('iinclude_page')) iinclude_page(261); ?&gt;
&lt;/div&gt;
&lt;?php include (footer.php');?&gt;</code></pre>
<p>You&#8217;ll notice that in this template I&#8217;m using the <a href="http://www.framework-templates.com/plugins/improved-include-page-plugin/">improved include page function</a>.</p>
<p>The ability to create custom templates allows you to create pretty much whatever you want with WordPress and makes it an ideal Content Management System.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.framework-templates.com/wordpress/creating-a-custom-page-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display a link to your RSS feed in address bar</title>
		<link>http://www.framework-templates.com/wordpress/rss-feed-icon-in-address-bar/</link>
		<comments>http://www.framework-templates.com/wordpress/rss-feed-icon-in-address-bar/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 18:37:05 +0000</pubDate>
		<dc:creator>christine</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.framework-templates.com/?p=157</guid>
		<description><![CDATA[I was scanning the WordPress Support Forum the other day and someone asked how one could display an RSS feed icon in the address bar just like in the image below:

I must confess I&#8217;d never noticed this before and of course now I can see it on most websites, so I&#8217;ve updated the basic and [...]]]></description>
			<content:encoded><![CDATA[<p>I was scanning the <a href="http://wordpress.org/support/">WordPress Support Forum</a> the other day and someone asked how one could display an RSS feed icon in the address bar just like in the image below:</p>
<p><img class="alignnone size-full wp-image-160" title="rss feed icon in address bar" src="http://www.framework-templates.com/wp/wp-content/uploads/2009/07/rss.gif" alt="rss feed icon in address bar" width="418" height="38" /></p>
<p>I must confess I&#8217;d never noticed this before and of course now I can see it on most websites, so I&#8217;ve updated the basic and 3 column templates to include this feature. And you can too  simply by replacing the RSS feed code in the header.php from:</p>
<pre><code>&lt;link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="&lt;?php bloginfo('rss2_url'); ?&gt;" /&gt;</code></pre>
<p>to:</p>
<pre><code>&lt;link rel="alternate" type="application/rss+xml" title="&lt;?php bloginfo('name'); ?&gt; RSS Feed" href="&lt;?php bloginfo('rss2_url'); ?&gt;" /&gt;</code></pre>
<p>That simple change is all it takes!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.framework-templates.com/wordpress/rss-feed-icon-in-address-bar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enhance your WordPress website using the Improved Include Page plugin</title>
		<link>http://www.framework-templates.com/plugins/improved-include-page-plugin/</link>
		<comments>http://www.framework-templates.com/plugins/improved-include-page-plugin/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 22:26:53 +0000</pubDate>
		<dc:creator>christine</dc:creator>
				<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://www.framework-templates.com/?p=153</guid>
		<description><![CDATA[Ever wondered how you can provide someone with a sidebar text option without having to use widgets? Or maybe you&#8217;ve designed a slightly different home page and want to display more than one area of content?  Vito Tardia&#8217;s Improved Include Page plugin is very useful for that and super easy to use.
Just like any [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wondered how you can provide someone with a sidebar text option without having to use widgets? Or maybe you&#8217;ve designed a slightly different home page and want to display more than one area of content?  <a href="http://www.vtardia.com/improved-include-page/">Vito Tardia&#8217;s Improved Include Page plugin</a> is very useful for that and super easy to use.</p>
<p>Just like any other plugins, simply go to WordPress, <a href="http://wordpress.org/extend/plugins/improved-include-page/">download</a>, install the plugin and activate it. Once activated you can use the following function in your templates:</p>
<pre><code>&lt;?php if(function_exists('iinclude_page')) iinclude_page(post_id); ?&gt; </code></pre>
<h4>Creating a sidebar text option without using widgets</h4>
<p>If you take a look at the <a href="http://www.aquattroliving.com">Aquattro Living website</a>, you will see that the contact information appears at the bottom of the left hand side column on all pages. This information is likely to remain unchanged for a long time, but instead of inserting it in the template file and make it unmanageable by the client, all you need to do is create a new page called Contact Us Sidebar, exclude it from the main navigation and insert the include function in your sidebar.php template file.</p>
<h4>Display more than one area of content on a template</h4>
<p>Both <a href="http://www.vancouversightseeing.com/">West Coast Sightseeing</a> and <a href="http://www.ascentgroup.ca/">Ascent</a> websites have three boxes of content on their home page. These different area of content are easy to create using this plugin. Simply create three new pages, called for example home col1, home col2, home col3 and display the content using the following code:</p>
<pre><code>&lt;div id="col1"&gt;
&lt;?php if(function_exists('iinclude_page')) iinclude_page(1); ?&gt;
&lt;/div&gt;</code>

<code>&lt;div id="col2"&gt;
&lt;?php if(function_exists('iinclude_page')) iinclude_page(2); ?&gt;
&lt;/div&gt;</code>

<code>&lt;div id="col3"&gt;
&lt;?php if(function_exists('iinclude_page')) iinclude_page(3); ?&gt;
&lt;/div&gt;</code></pre>
<p>You would of course change the post_id numbers to the number of your new pages and mark up the css to display the columns as you&#8217;ve stipulated in your design.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.framework-templates.com/plugins/improved-include-page-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Framework Templates revised following WP 2.8 release</title>
		<link>http://www.framework-templates.com/wordpress/framework-templates-revision/</link>
		<comments>http://www.framework-templates.com/wordpress/framework-templates-revision/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 02:15:18 +0000</pubDate>
		<dc:creator>christine</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.framework-templates.com/?p=147</guid>
		<description><![CDATA[Following the much anticipated release of WordPress version 2.8, I read up about deprecated functions from past WordPress releases and realized that my templates contained a few that needed updated.
wp_get_links() is now a deprecated function and was replaced by wp_list_bookmarks()
wp_list_cats() is also deprecated and has been replaced by wp_list_categories()
These functions can be found in the [...]]]></description>
			<content:encoded><![CDATA[<p>Following the much anticipated release of WordPress version 2.8, I read up about <a href="http://core.trac.wordpress.org/browser/trunk/wp-includes/deprecated.php">deprecated functions</a> from past WordPress releases and realized that my templates contained a few that needed updated.</p>
<p><strong>wp_get_links()</strong> is now a deprecated function and was replaced by <a title="Template Tags/wp list bookmarks" href="http://codex.wordpress.org/Template_Tags/wp_list_bookmarks">wp_list_bookmarks()</a></p>
<p><strong>wp_list_cats()</strong> is also deprecated and has been replaced by <a title="Template Tags/wp list categories" href="http://codex.wordpress.org/Template_Tags/wp_list_categories">wp_list_categories()</a></p>
<p>These functions can be found in the sidebar.php of the 3-column and basic themes and the sidebar-custom.php of the 3-column theme. No changes are needed in any of the other templates.</p>
<p>Additionally, while doing research about the best way to write the search function, I came across <a href="http://perishablepress.com/press/2006/07/26/wordpress-search-function-notes/">this post</a> which explained that both <code>action="&lt;?php echo $_SERVER['PHP_SELF']; ?&gt;"</code> and  <code>action="&lt;?php bloginfo('siteurl'); ?&gt;"</code> are correct and will provide search results. But the second method is the one to use if you choose to have your blog in a directory other than the root.  Since the second method one also works if your blog is in the root folder, I thought it would be safer and less confusing to simply replace that bit of code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.framework-templates.com/wordpress/framework-templates-revision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimize your blog with Revision Control</title>
		<link>http://www.framework-templates.com/plugins/optimize-your-blog-with-revision-control/</link>
		<comments>http://www.framework-templates.com/plugins/optimize-your-blog-with-revision-control/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 21:18:27 +0000</pubDate>
		<dc:creator>christine</dc:creator>
				<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://www.framework-templates.com/?p=138</guid>
		<description><![CDATA[Post revisions we&#8217;re introduced with the release of WordPress 2.6. These are incredibly useful especially when you have a multi-author blog, but unfortunately this also increases the size of your MySQL database, which decreases the speed or your site.
If you have access to your database and know what you are doing, then an easy solution [...]]]></description>
			<content:encoded><![CDATA[<p>Post revisions we&#8217;re introduced with the release of WordPress 2.6. These are incredibly useful especially when you have a multi-author blog, but unfortunately this also increases the size of your MySQL database, which decreases the speed or your site.</p>
<p>If you have access to your database and know what you are doing, then an easy solution is to execute the following SQL statement:</p>
<p><code>DELETE FROM wp_posts WHERE post_type = "revision"; </code></p>
<p>This simple SQL query will delete all of post revisions and, if you have a lot of posts, this may considerably reduce your database in speed up your blog.</p>
<p>An easier way to do it however, is by installing the <a href="http://wordpress.org/extend/plugins/revision-control/">revision control plugin</a>. Once installed this plugin allows you to either disable or enable post revisions or what I like to do is to limit post revisions to the latest two.</p>
<p style="text-align: center;"><img class="size-full wp-image-143 aligncenter" title="Revision Control admin screenshot" src="http://www.framework-templates.com/wp/wp-content/uploads/2009/06/revision-control.gif" alt="Revision Control admin screenshot" width="438" height="270" /></p>
<p>This plugin is an ideal way to optimize and speed up your blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.framework-templates.com/plugins/optimize-your-blog-with-revision-control/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>3 Column Fixed Width Blog Template</title>
		<link>http://www.framework-templates.com/wordpress/3-column-fixed-width-blog-template/</link>
		<comments>http://www.framework-templates.com/wordpress/3-column-fixed-width-blog-template/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 21:02:26 +0000</pubDate>
		<dc:creator>christine</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.framework-templates.com/?p=135</guid>
		<description><![CDATA[We&#8217;ve just released our latest framework template allowing you to build a 3 column blog with both left and right sidebar widget enabled. This template framework does not require any plugin and like all our previous templates, the code is clean and simple.
You can check out the demo here or download it.
If you have a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.framework-templates.com/wp/wp-content/uploads/2009/04/3cols.gif"><img class="alignright size-medium wp-image-130" title="3 column template" src="http://www.framework-templates.com/wp/wp-content/uploads/2009/04/3cols-150x150.gif" alt="3 column template" width="150" height="150" /></a>We&#8217;ve just released our latest <a href="templates/#3cols">framework template</a> allowing you to build a 3 column blog with both left and right sidebar widget enabled. This template framework does not require any plugin and like all our previous templates, the code is clean and simple.</p>
<p>You can <a href="http://3cols.framework-templates.com">check out the demo here</a> or <a href="http://www.framework-templates.com/downloads/FrameworkTemplates_3-column.zip">download it</a>.</p>
<p>If you have a chance to play around with any of our templates and create a blog or website, <a href="contact/">please let us know</a>. We&#8217;ll feature your work on our blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.framework-templates.com/wordpress/3-column-fixed-width-blog-template/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Protect you data with regular back-ups</title>
		<link>http://www.framework-templates.com/plugins/protect-you-data-with-regular-back-ups/</link>
		<comments>http://www.framework-templates.com/plugins/protect-you-data-with-regular-back-ups/#comments</comments>
		<pubDate>Fri, 15 May 2009 17:00:17 +0000</pubDate>
		<dc:creator>christine</dc:creator>
				<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://www.framework-templates.com/?p=114</guid>
		<description><![CDATA[Yes you&#8217;ve heard before, back-up, back-up, back-up. It can be hard and tedious to do database back-ups but it&#8217;s very important. Luckily for us, there&#8217;s a plugin for that. The WordPress database backup plugin makes it a cinch to carry out back-ups. Simply download the plugin, install and activate it as you would any other [...]]]></description>
			<content:encoded><![CDATA[<p>Yes you&#8217;ve heard before, back-up, back-up, back-up. It can be hard and tedious to do database back-ups but it&#8217;s very important. Luckily for us, there&#8217;s a plugin for that. The <a href="http://wordpress.org/extend/plugins/wp-db-backup/">WordPress database backup</a> plugin makes it a cinch to carry out back-ups. Simply download the plugin, install and activate it as you would any other plugin. Once activated, you will find a new menu entitled  Backup under the Tools menu.  Navigating to this area will reveal a new admin window where you can make a back-up immediately or you can schedule it to be delivered to you via email or downloaded on your server or computer.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-115" title="Screenshot of Wordpress Database Back Up Plugin Admin Area" src="http://www.framework-templates.com/wp/wp-content/uploads/2009/05/backup_screenshot.jpg" alt="Screenshot of Wordpress Database Back Up Plugin Admin Area" width="400" height="176" /></p>
<p>I&#8217;m not sure that back-ups could be any easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.framework-templates.com/plugins/protect-you-data-with-regular-back-ups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
