<?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>bavotasan.com &#187; Themes</title>
	<atom:link href="http://bavotasan.com/tag/themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://bavotasan.com</link>
	<description>by c.bavota</description>
	<lastBuildDate>Thu, 09 Sep 2010 14:21:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Developing Themes for WordPress: Part 1</title>
		<link>http://bavotasan.com/tutorials/developing-themes-for-wordpress-part-1/</link>
		<comments>http://bavotasan.com/tutorials/developing-themes-for-wordpress-part-1/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 21:19:36 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[codex]]></category>
		<category><![CDATA[premium themes]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bavotasan.com/?p=2709</guid>
		<description><![CDATA[Over the weekend, I gave a presentation on developing WordPress themes for fun and profit. It went really well and I thought it would be a good idea to go into a bit more detail on everything I mentioned so that people can have a point of reference. I began my presentation with the new [...]]]></description>
			<content:encoded><![CDATA[<p>Over the weekend, I gave a presentation on developing WordPress themes for fun and profit. It went really well and I thought it would be a good idea to go into a bit more detail on everything I mentioned so that people can have a point of reference. I began my presentation with the new guidelines that are still being set up on WordPress.org and that is what the first part of this series will focus on.</p>
<h3>WordPress 3.0 Changes Everything</h3>
<p>With the release of WP 3.0, the &#8220;official&#8221; theme reviewer(s) on WordPress.org thought it would be a good idea to improve the current requirements and come up with a strict guideline to let theme developers know exactly what is expected of their themes. This would make the job of reviewing themes for WordPress.org much easier, but it would also set a standard for all the themes within the WP Themes Directory, and hopefully, all WP themes in general.</p>
<p>As a developer, the more documentation you can get about the software you are developing for, the easier your job is. And now WordPress has three pages in the codex dedicated to theme development that all developers need to read and understand.</p>
<h3>The Theme Unit Test</h3>
<p><img src="http://bavotasan.com/wp-content/uploads/2010/08/themeunit.jpg" alt="Theme Unit Test" title="themeunit" width="550" height="160" class="alignleft size-full wp-image-2710" /><br />
The theme unit test is an xml file that a developer should use in their testing environment. If you do not have a test install of WordPress to test your themes, that is the first step you should take. Once you have you test install up and running, download the theme unit test xml file and upload it into your WP install by going to the Tools panel in your wp-admin and clicking on the Import link. Import the xml file and all of the images associated with it. Now you have a test blog full of content that will help you make sure that your theme works with the many different features of WordPress.</p>
<p>The codex page lists all the different types of content that is uploaded by the xml file, and how is should be displayed by your theme. If things don&#8217;t look right on your theme, then you need to make sure to follow the guidelines and include the proper functions and/or CSS to get it looking the way it should.</p>
<p>Codex page: <a href="http://codex.wordpress.org/Theme_Unit_Test">http://codex.wordpress.org/Theme_Unit_Test</a></p>
<h3>Theme Development Guidelines</h3>
<p><img src="http://bavotasan.com/wp-content/uploads/2010/08/themedevelopment.jpg" alt="Theme Development Guidelines" title="themedevelopment" width="550" height="160" class="alignleft size-full wp-image-2712" /><br />
The title of this codex page pretty much says it all. These are the guidelines for developing a WordPress theme. There are many things that need to be in place in order for your theme to work with  WP. If your theme does not conform to these requirements, it will not work with WordPress. That&#8217;s why this part of the codex is the most important piece of documentation for any theme developer.</p>
<p>Reading through the guidelines will put you on the right track in regards to how your theme should be structured, what functions are a <em>must</em>, and what files need to be included in order for it to work properly. The page is quite long, but once you get trough it and start to piece together your theme, you&#8217;ll realize that it isn&#8217;t as hard as it seems. And remember, all well-built WordPress themes follow these guidelines, so just take a look behind the scenes of one of your favorite themes to see how the code has been implemented if you feel you&#8217;re stuck. </p>
<p>Codex page: <a href="http://codex.wordpress.org/Theme_Development">http://codex.wordpress.org/Theme_Development</a></p>
<h3>Theme Review Process</h3>
<p><img src="http://bavotasan.com/wp-content/uploads/2010/08/themereview.jpg" alt="Theme Review Process" title="themereview" width="550" height="160" class="alignleft size-full wp-image-2711" /><br />
This page describes exactly how your theme will be scrutinized if you submit it to the WordPress.org Theme Directory. Knowing exactly what the theme reviewers look at and using that information to personally judge your own theme will help guarantee that you have developed a theme that is up to snuff. It also lets you know some of the dos and don&#8217;ts that you should be aware of that were not discussed on the other two codex pages.</p>
<p>Codex page: <a href="http://codex.wordpress.org/Theme_Review">http://codex.wordpress.org/Theme_Review</a></p>
<h3>Part 2: What goes where?</h3>
<p>Next I will discuss what basic templates files are necessary for your theme and what code is required in order to get everything working properly.</p>
<p>Part 1: <a href="http://bavotasan.com/tutorials/developing-themes-for-wordpress-part-1/">Guidelines for Developing a WordPress Theme</a><br />
Part 2: <a href="http://bavotasan.com/tutorials/developing-themes-for-wordpress-template-file/">Basic Template Files</a><br />
Part 3: <a href="http://bavotasan.com/tutorials/developing-themes-for-wordpress-the-loop/">Understand The WordPress Loop</a><br />
Part 4: <a href="http://bavotasan.com/tutorials/developing-themes-for-wordpress-options/">Adding Theme Options</a><br />
Part 5: <a href="http://bavotasan.com/tutorials/developing-themes-for-wordpress-make-money/">Making Money</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bavotasan.com/tutorials/developing-themes-for-wordpress-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moderno v1.0 Premium WordPress Theme</title>
		<link>http://bavotasan.com/articles/moderno-v1-0-premium-wordpress-theme/</link>
		<comments>http://bavotasan.com/articles/moderno-v1-0-premium-wordpress-theme/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 20:00:57 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Column Layout]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[crowd]]></category>
		<category><![CDATA[exquisite design]]></category>
		<category><![CDATA[face kits]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[infinite]]></category>
		<category><![CDATA[infinite number]]></category>
		<category><![CDATA[info]]></category>
		<category><![CDATA[look]]></category>
		<category><![CDATA[Moderno]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[original look]]></category>
		<category><![CDATA[Placing]]></category>
		<category><![CDATA[possibilities]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[Select]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[subtle nuances]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web font]]></category>
		<category><![CDATA[Widgets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bavotasan.com/?p=1807</guid>
		<description><![CDATA[Just updated for WordPress 3.0. Moderno has a beautifully simple, yet exquisite design with many subtle nuances that make it stand out from the crowd. An optional two or three column layout with an infinite number of color and font possibilities make it easy to create a truly original look for your Web site. Go [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Just updated for WordPress 3.0.</strong></p>
<p><a href="http://themes.bavotasan.com/our-themes/premium-themes/moderno">Moderno</a> has a beautifully simple, yet exquisite design with many subtle nuances that make it stand out from the crowd. An optional two or three column layout with an infinite number of color and font possibilities make it easy to create a truly original look for your Web site. Go crazy placing your favorite widgets in up to three widgetized locations. Select a standardized Web font or get a little more creative with one of ten pre-installed @font-face kits.<br />
<span id="more-1807"></span><br />
<a class="highslide" href="http://bavotasan.com/wp-content/uploads/2010/03/moderno_final.jpg"><img src="http://bavotasan.com/wp-content/uploads/2010/03/moderno_final-373x600.jpg" alt="" title="moderno_final" width="373" height="600" class="aligncenter size-medium wp-image-1808" /></a></p>
<p>Go to <a href="http://themes.bavotasan.com/our-themes/premium-themes/moderno">Themes by bavotasan.com</a> for more info.</p>
]]></content:encoded>
			<wfw:commentRss>http://bavotasan.com/articles/moderno-v1-0-premium-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Feed Me, Seymour 1.2</title>
		<link>http://bavotasan.com/downloads/feed-me-seymour-free-wordpress-theme/</link>
		<comments>http://bavotasan.com/downloads/feed-me-seymour-free-wordpress-theme/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 13:05:24 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[Admin Interface]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[Click]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[engine v2]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[info]]></category>
		<category><![CDATA[Interface]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[Layout Options]]></category>
		<category><![CDATA[lot]]></category>
		<category><![CDATA[New Features]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Whole Lot]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bavotasan.com/?p=279</guid>
		<description><![CDATA[I have just updated Feed Me, Seymour for WordPress 3.0 and many of its new features. I have also cleaned up the code and added the Arturo Theme Engine v2.0 so that the admin interface works a whole lot better. Version 1.2 is currently only available on this site. Just click the download button below. [...]]]></description>
			<content:encoded><![CDATA[<p>I have just updated Feed Me, Seymour for WordPress 3.0 and many of its new features. I have also cleaned up the code and added the Arturo Theme Engine v2.0 so that the admin interface works a whole lot better. Version 1.2 is currently only available on this site. Just click the download button below.<br />
<span id="more-279"></span><br />
<em>Here are some examples of different layout options.</em></p>
<p><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/02/feedmeseymour.jpg"><img src="http://bavotasan.com/wp-content/uploads/2009/02/feedmeseymour-200x167.jpg" alt="feedmeseymour" title="feedmeseymour" width="160" class="alignleft size-thumbnail wp-image-280" /></a><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/02/feedme2.jpg"><img src="http://bavotasan.com/wp-content/uploads/2009/02/feedme2-200x175.jpg" alt="feedme2" title="feedme2" width="160" class="alignleft size-thumbnail wp-image-702" /></a><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/02/feedme3.jpg"><img src="http://bavotasan.com/wp-content/uploads/2009/02/feedme3-200x151.jpg" alt="feedme3" title="feedme3" width="160" class="alignleft size-thumbnail wp-image-703" /></a></p>
<hr style="clear:both;border:0;">
<p>For more info go to <a href="http://themes.bavotasan.com/our-themes/basic-themes/feed-me-seymour">Themes by bavotasan.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bavotasan.com/downloads/feed-me-seymour-free-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>83</slash:comments>
		</item>
		<item>
		<title>A Slightly New Design for Themes by bavotasan.com</title>
		<link>http://bavotasan.com/articles/slightly-new-design-for-themes-by-bavotasan-com/</link>
		<comments>http://bavotasan.com/articles/slightly-new-design-for-themes-by-bavotasan-com/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 17:14:25 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[bavotasan]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[couple]]></category>
		<category><![CDATA[couple of days]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[look]]></category>
		<category><![CDATA[lot]]></category>
		<category><![CDATA[New Layout]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[sense]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[using internet]]></category>

		<guid isPermaLink="false">http://bavotasan.com/?p=1947</guid>
		<description><![CDATA[I just spent the past couple of days updating the look of Themes by bavotasan.com. Things are slightly different but a lot nicer, in my opinion. For those using Internet Explorer, the design will probably look a lot more simple, but that&#8217;s because IE sucks the big one. Check it out in Firefox, Chrome or [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://bavotasan.com/wp-content/uploads/2010/04/themes.jpg" alt="" title="themes" width="200" height="150" class="alignright size-full wp-image-1967" />I just spent the past couple of days updating the look of <a href="http://themes.bavotasan.com/">Themes by bavotasan.com</a>. Things are slightly different but a lot nicer, in my opinion. For those using Internet Explorer, the design will probably look a lot more simple, but that&#8217;s because IE sucks the big one. Check it out in Firefox, Chrome or Safari to see all the changes.<br />
<span id="more-1947"></span><br />
I decided it would make more sense to show a few more features for each theme, so now there is a lot more information on each theme&#8217;s page.</p>
<p>Also, I finally built my first real CSS sprite to include all the images and icons I was using on the site. Check it out:</p>
<p><img src="http://bavotasan.com/wp-content/uploads/2010/04/icon_sprite-1-570x366.jpg" alt="" title="icon_sprite-1" width="570" height="366" class="aligncenter size-medium wp-image-1954" /></p>
<p>If you have any feedback about the new layout and design please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://bavotasan.com/articles/slightly-new-design-for-themes-by-bavotasan-com/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Snowblind v1.1.2 Free WordPress Theme</title>
		<link>http://bavotasan.com/downloads/snowblind-free-wordpress-theme/</link>
		<comments>http://bavotasan.com/downloads/snowblind-free-wordpress-theme/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 13:44:10 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[alignleft]]></category>
		<category><![CDATA[attachment]]></category>
		<category><![CDATA[Caption]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[Column Layout]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free wordpress theme]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[org]]></category>
		<category><![CDATA[Snowblind]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Translation]]></category>
		<category><![CDATA[v1]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[Width]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bavotasan.com/?p=759</guid>
		<description><![CDATA[I just updated Snowblind and version 1.1.2 is now available on WordPress.org. It&#8217;s now 100% translation ready and has a few more features to make it easier to set up. For more information go to Themes by bavotasan.com.]]></description>
			<content:encoded><![CDATA[<p>I just updated <em>Snowblind</em> and version 1.1.2 is now available on <a href="http://wordpress.org/extend/themes/snowblind">WordPress.org</a>. It&#8217;s now 100% translation ready and has a few more features to make it easier to set up. <span id="more-759"></span><br />
<div id="attachment_771" class="wp-caption alignleft" style="width: 128px"><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/07/snow1.png"><img src="http://bavotasan.com/wp-content/uploads/2009/07/snow1-158x200.png" alt="" title="snow1" width="118" height="150" class="size-thumbnail wp-image-771" /></a><p class="wp-caption-text">3 Column Layout</p></div> <div id="attachment_773" class="wp-caption alignleft" style="width: 100px"><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/07/snow2.png"><img src="http://bavotasan.com/wp-content/uploads/2009/07/snow2-121x200.png" alt="" title="snow2" width="90" height="150" class="size-thumbnail wp-image-773" /></a><p class="wp-caption-text">2 Colum Layout</p></div> <div id="attachment_774" class="wp-caption alignleft" style="width: 125px"><a href="http://bavotasan.com/wp-content/uploads/2009/07/snow3.png" class="highslide"><img src="http://bavotasan.com/wp-content/uploads/2009/07/snow3-154x200.png" alt="" title="snow3" width="115" height="150" class="size-thumbnail wp-image-774" /></a><p class="wp-caption-text">Reverse 2 Column</p></div> <br class="clear" /> </p>
<p>For more information go to <a href="http://themes.bavotasan.com/our-themes/basic-themes/snowblind">Themes by bavotasan.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bavotasan.com/downloads/snowblind-free-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Themes by bavotasan.com is Finally Ready!</title>
		<link>http://bavotasan.com/articles/themes-by-bavotasan-com-is-finally-ready/</link>
		<comments>http://bavotasan.com/articles/themes-by-bavotasan-com-is-finally-ready/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 06:00:52 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Affiliates]]></category>
		<category><![CDATA[bavotasan]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[commercial themes]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[everyone]]></category>
		<category><![CDATA[feedback]]></category>
		<category><![CDATA[few differences]]></category>
		<category><![CDATA[Forum]]></category>
		<category><![CDATA[lot]]></category>
		<category><![CDATA[month]]></category>
		<category><![CDATA[night]]></category>
		<category><![CDATA[premium themes]]></category>
		<category><![CDATA[premium wordpress themes]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[Support Forum]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[way]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress themes]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[working day and night]]></category>

		<guid isPermaLink="false">http://bavotasan.com/?p=1420</guid>
		<description><![CDATA[I have been working non-stop over the past month to get my WordPress themes site ready and it&#8217;s about time I let everyone check it out. So here is goes&#8230; I am proud to present Themes by bavotasan.com. I have also moved my Affiliates site over so you will probably notice a few differences there [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://themes.bavotasan.com"><img src="http://bavotasan.com/wp-content/uploads/2009/10/screenshot.png" alt="screenshot" title="screenshot" width="300" height="311" class="alignright size-full wp-image-1421" /></a>I have been working non-stop over the past month to get my WordPress themes site ready and it&#8217;s about time I let everyone check it out. So here is goes&#8230; I am proud to present <a href="http://themes.bavotasan.com">Themes by bavotasan.com</a>. I have also moved my <a href="http://themes.bavotasan.com/affiliates">Affiliates</a> site over so you will probably notice a few differences there as well. And best of all, now I have a <a href="http://support.bavotasan.com">Support Forum</a>, though it&#8217;s still pretty empty. So start filling it up with questions so I can help you out!<br />
<span id="more-1420"></span><br />
 I am sure that there are a few bugs here and there so let me know what you think and please send any and all feedback my way.</p>
<p>Look forward to updates to all of my themes and plugins over the next few weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://bavotasan.com/articles/themes-by-bavotasan-com-is-finally-ready/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Certain Themes Won&#8217;t Preview Properly in WordPress</title>
		<link>http://bavotasan.com/tutorials/why-certain-themes-wont-preview-properly-in-wordpress/</link>
		<comments>http://bavotasan.com/tutorials/why-certain-themes-wont-preview-properly-in-wordpress/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 20:52:45 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Basic Works]]></category>
		<category><![CDATA[cause]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Contempo]]></category>
		<category><![CDATA[custom theme]]></category>
		<category><![CDATA[custom theme preview]]></category>
		<category><![CDATA[Folders]]></category>
		<category><![CDATA[luck]]></category>
		<category><![CDATA[Luckily]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[no dashes]]></category>
		<category><![CDATA[no spaces]]></category>
		<category><![CDATA[preview]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[something]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Underscore]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Wordpress Theme]]></category>
		<category><![CDATA[WordPress theme preview]]></category>

		<guid isPermaLink="false">http://bavotasan.com/?p=310</guid>
		<description><![CDATA[I have been developing some themes for WordPress and I couldn&#8217;t understand why they wouldn&#8217;t appear in the preview when they were selected. I went through all of my code and tested removing parts that I thought might be the cause and no luck. Luckily enough I stumbled upon WP Contempo and found a solution. [...]]]></description>
			<content:encoded><![CDATA[<p>I have been developing some themes for WordPress and I couldn&#8217;t understand why they wouldn&#8217;t appear in the preview when they were selected. I went through all of my code and tested removing parts that I thought might be the cause and no luck. Luckily enough I stumbled upon <a href="http://www.wpcontempo.com/wordpress-theme-preview-doesnt-work-heres-why/">WP Contempo</a> and found a solution.<br />
<span id="more-310"></span><br />
They state that WordPress does not like spaces in their theme folders. So something like &#8220;magazine basic&#8221; won&#8217;t do it. But what I also noticed, was that &#8220;magazine-basic&#8221; won&#8217;t do it either. The only way to name a folder so that the WordPress preview works properly is to use the underscore. So something like &#8220;magazine_basic&#8221; works perfectly.</p>
]]></content:encoded>
			<wfw:commentRss>http://bavotasan.com/tutorials/why-certain-themes-wont-preview-properly-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
