<?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>My Blog It &#187; Free Themes</title>
	<atom:link href="http://myblogit.net/category/wordpress/free-themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://myblogit.net</link>
	<description>We are WordPress junkies</description>
	<lastBuildDate>Mon, 11 Apr 2011 20:57:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>1 Step theme install &#8211; Not</title>
		<link>http://myblogit.net/2008/07/25/1-step-theme-install-not/</link>
		<comments>http://myblogit.net/2008/07/25/1-step-theme-install-not/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 22:01:14 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://myblogit.net/?p=279</guid>
		<description><![CDATA[Installing a new WordPress theme should be one click, well in a fantisy world maybe. I&#8217;m going to take you through the steps to getting your newly found theme ready for use. Check your theme for the not so nice After downloading your newly found WordPress theme unzip the files look for a file called [...]
Related posts:<ol>
<li><a href='http://myblogit.net/2007/07/17/wordpress-theme-tags-bloginfo/' rel='bookmark' title='WordPress Theme Tags: &#8216;bloginfo&#8217;'>WordPress Theme Tags: &#8216;bloginfo&#8217;</a></li>
<li><a href='http://myblogit.net/2008/01/31/free-wordpress-themepolitical-politics/' rel='bookmark' title='Free WordPress Theme:Political Politics'>Free WordPress Theme:Political Politics</a></li>
<li><a href='http://myblogit.net/2007/07/18/wordpress-theme-tags-include/' rel='bookmark' title='WordPress Theme Tags: &#8216;include&#8217;'>WordPress Theme Tags: &#8216;include&#8217;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Installing a new WordPress theme should be one click, well in a fantisy world maybe. I&#8217;m going to take you through the steps to getting your newly found theme ready for use.</p>
<h2>Check your theme for the not so nice</h2>
<p>After downloading your newly found WordPress theme unzip the files look for a file called functions.php with a text editor. Look for anything that looks like this:</p>
<p><a href="http://myblogit.net/wp-content/uploads/2008/07/code.gif"><img class="alignnone size-full wp-image-280" title="code" src="http://myblogit.net/wp-content/uploads/2008/07/code.gif" alt="" width="370" height="67" /></a></p>
<p>What we have here is a cheap and easy encryption method. The bad news is we don&#8217;t know what the heck is in there. It could be anything from simple link back code to a algorithm allowing backend access to your WordPress dashboard.</p>
<p>If you find code even remotely like this don&#8217;t use the theme. Maybe another day I&#8217;ll show how to decode this.</p>
<p>Next look in the image directory; There should not be any text or php files in this directory. If you find one take a look for the same type code as above.</p>
<p>When I tear into a theme I open every file looking for any encription. I have seen themes with link backs in the 404 files too.</p>
<h2>Title and Keywords</h2>
<p>Many theme designers are very lazy when it comes to the title and keywords.  Most will use a very simple title such as this:</p>
<p>&lt;title&gt;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;/title&gt;</p>
<p>So lets get started, open the header.php file.<br />
I would suggest changing it to something like this:</p>
<p>&lt;title&gt;<br />
&lt;?php<br />
if (is_home()) {<br />
echo bloginfo(&#8216;name&#8217;); echo &#8220;: &#8220;; echo bloginfo(&#8216;description&#8217;);<br />
} elseif (is_404()) {<br />
echo &#8217;404 Not Found&#8217;;<br />
} elseif (is_category()) {<br />
echo &#8216;Topics:&#8217;; wp_title(&#8221;);<br />
} elseif (is_search()) {<br />
echo &#8216;Search Results&#8217;;<br />
} elseif (is_day() || is_month() || is_year() ) {<br />
echo &#8216;Archives:&#8217;; wp_title(&#8221;);<br />
} else {<br />
echo wp_title(&#8221;);<br />
$subtitle = get_post_meta($post-&gt;ID, &#8216;Subtitle&#8217;, $single = true);<br />
if($subtitle !== &#8221;) { echo &#8216;: &#8216; . $subtitle; }<br />
} ?&gt;<br />
&lt;/title&gt;</p>
<h2>Keywords</h2>
<p>Most theme designers will not offer any keywords or will often use their own in the keywords meta tags.</p>
<p>so find this:<br />
<img class="alignnone size-full wp-image-281" title="keywords" src="http://myblogit.net/wp-content/uploads/2008/07/1-pro-host-e280ba-edit-themes-e28094-wordpress_1217021325441.png" alt="" width="373" height="21" /></p>
<p>and change theme to your keywords.</p>
<h2>WordPress Version</h2>
<p><img class="alignnone size-full wp-image-282" title="ver" src="http://myblogit.net/wp-content/uploads/2008/07/ver.png" alt="" width="491" height="13" /></p>
<p>This is meta tag that is really not needed. You really don&#8217;t want hackers to know what version of WordPress your using. So just remove this entire meta tag.</p>
<h2>Footer</h2>
<p>Now open the footer.php file and look for the that encrypted code as we talked about before. Most themers who make themes for sponsors will add encryption so that you don&#8217;t remove the sponsor&#8217;s link.</p>
<p>But then again, there could be more in the code than just some simple link code.</p>
<h2>Tracking code</h2>
<p>Now don&#8217;t forget to add your tracking code for google analytic, mybloglog&#8230;.</p>
<p>Did I miss anything?</p>
<img src="http://myblogit.net/?ak_action=api_record_view&id=279&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://myblogit.net/2007/07/17/wordpress-theme-tags-bloginfo/' rel='bookmark' title='WordPress Theme Tags: &#8216;bloginfo&#8217;'>WordPress Theme Tags: &#8216;bloginfo&#8217;</a></li>
<li><a href='http://myblogit.net/2008/01/31/free-wordpress-themepolitical-politics/' rel='bookmark' title='Free WordPress Theme:Political Politics'>Free WordPress Theme:Political Politics</a></li>
<li><a href='http://myblogit.net/2007/07/18/wordpress-theme-tags-include/' rel='bookmark' title='WordPress Theme Tags: &#8216;include&#8217;'>WordPress Theme Tags: &#8216;include&#8217;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://myblogit.net/2008/07/25/1-step-theme-install-not/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Interview with Sunny Nathan from Headsetoptions</title>
		<link>http://myblogit.net/2008/07/22/interview-with-sunny-nathan-from-headsetoptions/</link>
		<comments>http://myblogit.net/2008/07/22/interview-with-sunny-nathan-from-headsetoptions/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 17:50:19 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Featured Theme Designer]]></category>
		<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[Interview]]></category>

		<guid isPermaLink="false">http://myblogit.net/?p=277</guid>
		<description><![CDATA[Could you tell us a little about yourself Thanks for asking. I am Sunny Nathan, a 32 year old husband, professional engineer and a part time web developer. I started learning HTML and CSS out of a desperate need to create database driven sites for a not for profit foundation I co-found with a school [...]
Related posts:<ol>
<li><a href='http://myblogit.net/2008/06/18/interview-with-chiq-montes/' rel='bookmark' title='Interview with ChiQ Montes'>Interview with ChiQ Montes</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.headsetoptions.org/"><img class="alignnone size-full wp-image-278" style="margin:15px;" title="Headsetoptions" src="http://myblogit.net/wp-content/uploads/2008/07/headsetoptions.png" alt="" width="294" height="74" /></a></p>
<p><strong>Could you tell us a little about yourself</strong><br />
Thanks for asking. I am Sunny Nathan, a 32 year old husband, professional engineer and a part time web developer. I started learning HTML and CSS out of a desperate need to create database driven sites for a not for profit foundation I co-found with a school mate from Canada.</p>
<p><strong>Where do you find your creative inspiration?</strong><br />
I am perpetually on the learning curve, since this is not my primary occupation I have not had an opportunity to obtain any formal academic training. With that said, I draw inspiration from many sources, magazines, television, the Internet, pretty much anything I encounter. I have lately taken to Blueprint CSS and I might use it in all future contractual work, maybe eventually use it to design free themes.</p>
<p><strong>What tools do you use?</strong><br />
As of now, I am using Photoshop and notepad, I hand code the CSS and XHTML, so I seldom use any editors.</p>
<p><strong>How much time do you spend on each theme?</strong><br />
Anywhere between 3 to 8 hours to design and validate, again some themes never see the light of day, so it totally depends on my mood.</p>
<p><strong>Why do you do design themes for WordPress?</strong><br />
Mostly because people have come to expect of <a href="http://www.headsetoptions.org/">HeadsetOptions</a> and <a href="http://www.mandarinmusing.com/">MandarinMusing</a>. We started off making themes to develop relationship with our user base and we feel it is a good way to give back to the wonderful WordPress community.</p>
<p><strong>What is your favorite snack while hacking away at your themes?</strong><br />
I barely snack, but I do drink tons of coffee. I sometime work with the TV on, just to catch the news or a rerun of Seinfeld while coding.</p>
<p><strong>Not including your own themes; What is some of your favorites?</strong><br />
I like most of the themes by <a href="http://designdisease.com/">Design Disease</a>. <a href="http://www.thoughtmechanics.com/">Theron Parlin</a> and <a href="http://5thirtyone.com/">Derek Punsalan</a> make pretty nifty themes; <a href="http://www.briangardner.com/">Brian Gardner</a>, <a href="http://www.darrenhoyt.com/">Darren Hoyt</a> (who I found out recently is geographically the closest well-known designer to me), Small Potato are some designers who are consistently good, I like hoards of other themes, too many to mention, but pretty much anything that gets of <a href="http://www.wpsnap.com/">wpSnap</a> is in my opinion pretty high up on my list.</p>
<p><strong>What are some of your favorite hang outs on the web?</strong><br />
Frankly I do not get online as much as I would like to, I usually hit my Google Reader to catch on feeds, visit <a href="http://www.sethgodin.com/sg/">Seth Godin</a> at least once a day ever since I moved from being a researcher to a marketer at my day job, and the rest are usually for emails and site updates. I visit your site every time I see you on my MyBlogLog friends list; I seldom log into MyBlogLog myself though.</p>
<p><strong>When not at your desk, what do you do for fun?</strong><br />
My wife and I catch up on our respective experiences each day, we usually end up discussing politics, books or just about anything our mind wanders into. We watch a lot of classic thrillers; we both are Hitchcock fans and have only a handful of movies to go before we have seen em all!</p>
<p><strong>Do you design for any other CMS?</strong><br />
<a href="http://textpattern.com/">TextPattern</a> and <a href="http://www.joomla.org/">Joomla</a>, however WordPress is my favorite.</p>
<p><strong>Where do you see WordPress heading in the future?</strong><br />
Undoubtedly towards becoming the most popular and the best free CMS in the world. It’s only a matter of time.</p>
<p>Be sure to check out some of <a href="http://www.headsetoptions.org/support/">Sunny&#8217;s themes</a>.</p>
<img src="http://myblogit.net/?ak_action=api_record_view&id=277&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://myblogit.net/2008/06/18/interview-with-chiq-montes/' rel='bookmark' title='Interview with ChiQ Montes'>Interview with ChiQ Montes</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://myblogit.net/2008/07/22/interview-with-sunny-nathan-from-headsetoptions/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Free WordPress Theme Kitten in Pink</title>
		<link>http://myblogit.net/2008/07/15/free-wordpress-theme-kitten-in-pink/</link>
		<comments>http://myblogit.net/2008/07/15/free-wordpress-theme-kitten-in-pink/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 19:24:38 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[My Themes]]></category>
		<category><![CDATA[My WordPress Themes]]></category>

		<guid isPermaLink="false">http://myblogit.net/?p=272</guid>
		<description><![CDATA[This theme is unlike any I have done in the past. Maybe because it&#8217;s pink. So .. yeah .. it&#8217;s a pink, 2 column, widget ready theme. Preview Kitten in Pink &#124; Download Download includes psd. Related posts: Free WordPress Theme RoseWood Free WordPress Theme: Morning Mountain Free WordPress Theme: Sport Fishing
Related posts:<ol>
<li><a href='http://myblogit.net/2008/07/14/free-wordpress-theme-rosewood/' rel='bookmark' title='Free WordPress Theme RoseWood'>Free WordPress Theme RoseWood</a></li>
<li><a href='http://myblogit.net/2007/08/09/free-wordpress-theme-morning-mountain/' rel='bookmark' title='Free WordPress Theme: Morning Mountain'>Free WordPress Theme: Morning Mountain</a></li>
<li><a href='http://myblogit.net/2007/10/18/free-wordpress-theme-sport-fishing/' rel='bookmark' title='Free WordPress Theme: Sport Fishing'>Free WordPress Theme: Sport Fishing</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This theme is unlike any I have done in the past. Maybe because it&#8217;s pink. So .. yeah .. it&#8217;s a pink, 2 column, widget ready theme.</p>
<p><a href="http://myblogit.net/wp-content/uploads/2008/07/screenshot1.png"><img class="alignnone size-full wp-image-273" title="WordPress Theme Kitten in Pink" src="http://myblogit.net/wp-content/uploads/2008/07/screenshot1.png" alt="" width="300" height="225" /></a></p>
<p><a href="http://knowledge.myblogit.net/index.php?preview_theme=Kitten%20in%20Pink">Preview Kitten in Pink</a> | <a href="http://myblogit.net/wp-content/uploads/2008/07/kitten.zip"> Download</a></p>
<p>Download includes psd.</p>
<img src="http://myblogit.net/?ak_action=api_record_view&id=272&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://myblogit.net/2008/07/14/free-wordpress-theme-rosewood/' rel='bookmark' title='Free WordPress Theme RoseWood'>Free WordPress Theme RoseWood</a></li>
<li><a href='http://myblogit.net/2007/08/09/free-wordpress-theme-morning-mountain/' rel='bookmark' title='Free WordPress Theme: Morning Mountain'>Free WordPress Theme: Morning Mountain</a></li>
<li><a href='http://myblogit.net/2007/10/18/free-wordpress-theme-sport-fishing/' rel='bookmark' title='Free WordPress Theme: Sport Fishing'>Free WordPress Theme: Sport Fishing</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://myblogit.net/2008/07/15/free-wordpress-theme-kitten-in-pink/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Free WordPress Theme RoseWood</title>
		<link>http://myblogit.net/2008/07/14/free-wordpress-theme-rosewood/</link>
		<comments>http://myblogit.net/2008/07/14/free-wordpress-theme-rosewood/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 22:30:07 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[My Themes]]></category>
		<category><![CDATA[My WordPress Themes]]></category>

		<guid isPermaLink="false">http://myblogit.net/?p=270</guid>
		<description><![CDATA[I just finished my latest WordPress theme RoseWood Download &#124; Preview RoseWood is a 2 column widget ready WordPress Theme The download includes the psd files. Related posts: Free WordPress Theme Kitten in Pink Free WordPress Theme: Sport Fishing Free WordPress Theme: Morning Mountain
Related posts:<ol>
<li><a href='http://myblogit.net/2008/07/15/free-wordpress-theme-kitten-in-pink/' rel='bookmark' title='Free WordPress Theme Kitten in Pink'>Free WordPress Theme Kitten in Pink</a></li>
<li><a href='http://myblogit.net/2007/10/18/free-wordpress-theme-sport-fishing/' rel='bookmark' title='Free WordPress Theme: Sport Fishing'>Free WordPress Theme: Sport Fishing</a></li>
<li><a href='http://myblogit.net/2007/08/09/free-wordpress-theme-morning-mountain/' rel='bookmark' title='Free WordPress Theme: Morning Mountain'>Free WordPress Theme: Morning Mountain</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I just finished my latest WordPress theme RoseWood</p>
<p><img class="alignnone size-full wp-image-269" title="WordPress Theme RoseWood" src="http://myblogit.net/wp-content/uploads/2008/07/screenshot.png" alt="" width="300" height="225" /></p>
<p><a href="http://myblogit.net/wp-content/uploads/2008/07/rosewood.zip">Download</a> | <a href="http://knowledge.myblogit.net/index.php?preview_theme=RoseWood">Preview</a></p>
<p>RoseWood is a 2 column widget ready WordPress Theme The download includes the psd files.</p>
<img src="http://myblogit.net/?ak_action=api_record_view&id=270&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://myblogit.net/2008/07/15/free-wordpress-theme-kitten-in-pink/' rel='bookmark' title='Free WordPress Theme Kitten in Pink'>Free WordPress Theme Kitten in Pink</a></li>
<li><a href='http://myblogit.net/2007/10/18/free-wordpress-theme-sport-fishing/' rel='bookmark' title='Free WordPress Theme: Sport Fishing'>Free WordPress Theme: Sport Fishing</a></li>
<li><a href='http://myblogit.net/2007/08/09/free-wordpress-theme-morning-mountain/' rel='bookmark' title='Free WordPress Theme: Morning Mountain'>Free WordPress Theme: Morning Mountain</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://myblogit.net/2008/07/14/free-wordpress-theme-rosewood/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>MyBlogit Updates</title>
		<link>http://myblogit.net/2008/07/10/myblogit-updates/</link>
		<comments>http://myblogit.net/2008/07/10/myblogit-updates/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 22:41:13 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Contest]]></category>
		<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[MyBlogIt News]]></category>

		<guid isPermaLink="false">http://myblogit.net/?p=267</guid>
		<description><![CDATA[Just wanted to make a really fast post with a few tidbits of news. Subscribers MyBlogIt&#8217;s Subscribers has grown slow and steady from the very first post. But I have always felt unconfortable broadcasting the feed count. Well today that will change I&#8217;m putting the FeedBurner&#8217;s feed count widget on the site&#8217;s sidebar. Comments I [...]
Related posts:<ol>
<li><a href='http://myblogit.net/2008/01/04/myblogit-the-contest/' rel='bookmark' title='MyBlogIt, the contest&#8230;'>MyBlogIt, the contest&#8230;</a></li>
<li><a href='http://myblogit.net/2008/11/24/new-service-from-myblogit/' rel='bookmark' title='New service from MyBlogIt'>New service from MyBlogIt</a></li>
<li><a href='http://myblogit.net/2007/06/18/26/' rel='bookmark' title='Comments and other bugs fixed.'>Comments and other bugs fixed.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Just wanted to make a really fast post with a few tidbits of news.</p>
<h2>Subscribers</h2>
<p>MyBlogIt&#8217;s Subscribers has grown slow and steady from the very first post. But I have always felt unconfortable broadcasting the feed count. Well today that will change I&#8217;m putting the FeedBurner&#8217;s feed count widget on the site&#8217;s sidebar.</p>
<h2>Comments</h2>
<p>I have installed a few plugins to reward those commentors who post comments on MyBlogIt. Those plugins include: <a title="Visit plugin homepage" href="http://webgrrrl.net/archives/my-top-commentators-widget-quick-dirty.htm">Top Commentators Widget</a> and <a title="Visit plugin homepage" href="http://www.fiddyp.co.uk/commentluv-wordpress-plugin/">Commentluv</a> So feel free to get involved with MyBlogit and comment.</p>
<h2>WordPress Themes</h2>
<p>I have been working, (or maybe I should say playing cause I enjoy it so much) on some new WordPress themes. I have created about 6 new themes. I&#8217;ll be fine tuning them and will be releasing them in the coming days.</p>
<h2>Contest</h2>
<p>I am working on a contest. It should be a lot of fun and will include a number of sponsors. More on this by Monday.</p>
<img src="http://myblogit.net/?ak_action=api_record_view&id=267&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://myblogit.net/2008/01/04/myblogit-the-contest/' rel='bookmark' title='MyBlogIt, the contest&#8230;'>MyBlogIt, the contest&#8230;</a></li>
<li><a href='http://myblogit.net/2008/11/24/new-service-from-myblogit/' rel='bookmark' title='New service from MyBlogIt'>New service from MyBlogIt</a></li>
<li><a href='http://myblogit.net/2007/06/18/26/' rel='bookmark' title='Comments and other bugs fixed.'>Comments and other bugs fixed.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://myblogit.net/2008/07/10/myblogit-updates/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WPThemeHeap Site Launched</title>
		<link>http://myblogit.net/2008/07/04/wpthemeheap-site-launched/</link>
		<comments>http://myblogit.net/2008/07/04/wpthemeheap-site-launched/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 22:19:57 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[MyBlogIt News]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://myblogit.net/?p=264</guid>
		<description><![CDATA[WPThemeHeap I just launched another WordPress theme site. This one allows yout to list your free WordPress themes. Feel free to stop by and list your theme.  I might be offering this theme and plugin set for sale soon. But I will need to work out some of the bugs first. I know just what [...]
Related posts:<ol>
<li><a href='http://myblogit.net/2007/10/17/wordpress-theme-viewer-an-update/' rel='bookmark' title='WordPress theme viewer an update'>WordPress theme viewer an update</a></li>
<li><a href='http://myblogit.net/2008/07/11/wordpress-template-tag-resources/' rel='bookmark' title='WordPress Template Tag Resources'>WordPress Template Tag Resources</a></li>
<li><a href='http://myblogit.net/2008/06/18/interview-with-chiq-montes/' rel='bookmark' title='Interview with ChiQ Montes'>Interview with ChiQ Montes</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://WPThemeHeap.com/">WPThemeHeap</a> I just launched another WordPress theme site.<br />
This one allows yout to list your free WordPress themes.</p>
<p><a href="http://WPThemeHeap.com/"><img class="alignnone size-full wp-image-265" title="WPThemeHeap" src="http://myblogit.net/wp-content/uploads/2008/07/shotssnapcom.jpg" alt="" width="270" height="171" /></a></p>
<p>Feel free to stop by and list your theme.  I might be offering this theme and plugin set for sale soon. But I will need to work out some of the bugs first.</p>
<p>I know just what the net needs another WordPress theme viewer.</p>
<img src="http://myblogit.net/?ak_action=api_record_view&id=264&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://myblogit.net/2007/10/17/wordpress-theme-viewer-an-update/' rel='bookmark' title='WordPress theme viewer an update'>WordPress theme viewer an update</a></li>
<li><a href='http://myblogit.net/2008/07/11/wordpress-template-tag-resources/' rel='bookmark' title='WordPress Template Tag Resources'>WordPress Template Tag Resources</a></li>
<li><a href='http://myblogit.net/2008/06/18/interview-with-chiq-montes/' rel='bookmark' title='Interview with ChiQ Montes'>Interview with ChiQ Montes</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://myblogit.net/2008/07/04/wpthemeheap-site-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interview with ChiQ Montes</title>
		<link>http://myblogit.net/2008/06/18/interview-with-chiq-montes/</link>
		<comments>http://myblogit.net/2008/06/18/interview-with-chiq-montes/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 05:29:36 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Featured Theme Designer]]></category>
		<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[ChiQ Montes]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[Theme Designer]]></category>

		<guid isPermaLink="false">http://myblogit.net/?p=254</guid>
		<description><![CDATA[I got a chance to interview ChiQ Montes. It really is fun to make new friends within the WordPress themers community. What follows is some fun insight into ChiQ Montes. ChiQ Montes, Please tell us a little about yourself. I am ChiQ Montes. Female. Filipino. I have been building websites and blogs for 5 years [...]
Related posts:<ol>
<li><a href='http://myblogit.net/2008/05/23/do-i-read-your-blog/' rel='bookmark' title='Do I read your Blog?'>Do I read your Blog?</a></li>
<li><a href='http://myblogit.net/2008/07/22/interview-with-sunny-nathan-from-headsetoptions/' rel='bookmark' title='Interview with Sunny Nathan from Headsetoptions'>Interview with Sunny Nathan from Headsetoptions</a></li>
<li><a href='http://myblogit.net/2007/07/17/wordpress-theme-tags-bloginfo/' rel='bookmark' title='WordPress Theme Tags: &#8216;bloginfo&#8217;'>WordPress Theme Tags: &#8216;bloginfo&#8217;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="float: left;" src="http://www.wpthemedesigner.com/wp-content/themes/wptd/images/chiq.jpg" alt="ChiQ Montes" align="left" /></p>
<p>I got a chance to interview <strong>ChiQ Montes</strong>. It really is fun to make new friends within the WordPress themers community. What follows is some fun insight into ChiQ Montes.</p>
<p><strong>ChiQ Montes, Please tell us a little about yourself.</strong></p>
<p>I am ChiQ Montes. Female. Filipino. I have been building websites and blogs for 5 years already and have been designing <strong>WordPress Themes</strong> for more than a year now. I am a techie at heart and a very laid-back person as well.</p>
<p><strong>Where do you find your creative inspiration?</strong></p>
<p>I visit a lot of blogs everyday just so I&#8217;d get to see what kind of lay-out would best work for them and even cluttered ones would serve as an inspiration since I would then try to create a theme to help them improve their blogs. Also, I compliment this with visiting CSS Galleries  for the creative part of the theme like colors and image/icon placement.</p>
<p><strong>What tools do you use?</strong></p>
<p>I use Photoshop for designing themes then the good ol&#8217; trusty notepad for coding and editing.</p>
<p><strong>How much time do you spend on each theme?</strong></p>
<p>I do try to discipline myself by imposing a time limit in creating WordPress Themes so as to be productive as possible but then most of the time, it all boils down to how I creative I feel when working on a theme. Sometimes, it only takes an hour to execute my ideas but there are also themes that I end up doing for three days.</p>
<p><strong>Why do you design themes for WordPress?</strong></p>
<p>Ever since I learned about WordPress and have used them for my blogs, I simply fell in love with it. It made everything easier. But being a web designer myself, using other people&#8217;s theme was not enough for me. I have also seen a big demand in WordPress Themes therefore I decided to plunge in the market.</p>
<p><strong>What is your favorite snack while hacking away at your themes?</strong></p>
<p>Eating while working isn&#8217;t a good practice at all therefore I try not to do it if possible. But at times that I feel like breaking the rules, I usually go for Nacho chips!</p>
<p><strong>Not including your own themes; What are some of your favorites?</strong></p>
<p>I do like using <a href="http://wp-themes.designdisease.com/free-wordpress-themes/">illacrimo</a> by <a href="http://wp-themes.designdisease.com/">designdisease</a></p>
<p><strong>What are some of your favorite hang outs on the web? </strong></p>
<p>I never fail to visit <a href="http://www.smashingmagazine.com">smashingmagazine</a>, <a href="http://www.blogcatalog.com/">blogcatalog</a> and <a href="http://entrecard.com/">entrecard</a>.</p>
<p><strong>When not hiding in your workplace, what else do you do for fun?</strong></p>
<p>I watch movies a lot! I also read business books/magazines and even play computer games.</p>
<p><strong>Do you design for any other CMS? </strong></p>
<p>Currently, no.</p>
<p><strong>Where do you see WordPress heading in the future?</strong></p>
<p>Oh! I believe WordPress will soon dominate even the e-commerce platform. In fact, there are already Premium Themes and plugins available today for this specific purpose and I&#8217;d eventually want to  WordPress themes for e-commerce sites.</p>
<h2>ChiQ Montes Links</h2>
<p>You can cacth her WordPress themes on her website  <a href="http://www.wpthemedesigner.com/">WordPress Theme Designer</a>, or you can follow her on <a href="http://twitter.com/WpThemeDesigner">Twitter</a>, <a href="http://www.blogcatalog.com/user/wpthemedesigner">BlogCatalog</a> and <a href="http://www.mybloglog.com/buzz/members/wpthemedesigner/">MyBlogLog</a>. I think we can all learn a great deal from this budding designer.</p>
<img src="http://myblogit.net/?ak_action=api_record_view&id=254&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://myblogit.net/2008/05/23/do-i-read-your-blog/' rel='bookmark' title='Do I read your Blog?'>Do I read your Blog?</a></li>
<li><a href='http://myblogit.net/2008/07/22/interview-with-sunny-nathan-from-headsetoptions/' rel='bookmark' title='Interview with Sunny Nathan from Headsetoptions'>Interview with Sunny Nathan from Headsetoptions</a></li>
<li><a href='http://myblogit.net/2007/07/17/wordpress-theme-tags-bloginfo/' rel='bookmark' title='WordPress Theme Tags: &#8216;bloginfo&#8217;'>WordPress Theme Tags: &#8216;bloginfo&#8217;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://myblogit.net/2008/06/18/interview-with-chiq-montes/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Free WordPress Theme Loopy Rainbow</title>
		<link>http://myblogit.net/2008/05/18/free-wordpress-theme-loopy-rainbow/</link>
		<comments>http://myblogit.net/2008/05/18/free-wordpress-theme-loopy-rainbow/#comments</comments>
		<pubDate>Sun, 18 May 2008 21:39:40 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[My Themes]]></category>

		<guid isPermaLink="false">http://myblogit.net/?p=236</guid>
		<description><![CDATA[After many request I have taken my old WordPress theme Loopy Blue and have made 7 skins for it and have renamed it Loopy Rainbow. once installed you can go to the theme&#8217;s option page and choose your color set. You can pick: blue, black, red, purple, pink and rainbow. I have also made a [...]
Related posts:<ol>
<li><a href='http://myblogit.net/2007/07/05/my-first-theme/' rel='bookmark' title='My First Theme Loopy Blue'>My First Theme Loopy Blue</a></li>
<li><a href='http://myblogit.net/2007/09/07/wordpress-theme-upgrade-loopy-blue-2/' rel='bookmark' title='WordPress Theme Upgrade Loopy Blue 2'>WordPress Theme Upgrade Loopy Blue 2</a></li>
<li><a href='http://myblogit.net/2007/09/19/new-theme-loopy-red/' rel='bookmark' title='New Theme: Loopy Red'>New Theme: Loopy Red</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>After many request I have taken my old WordPress theme <a href="http://myblogit.net/2007/07/05/my-first-theme/">Loopy Blue</a> and have made 7 skins for it and have renamed it Loopy Rainbow. once installed you can go to the theme&#8217;s option page and choose your color set. You can pick: blue, black, red, purple, pink and rainbow. I have also made a few small changes to the core like the RSS Icon has been added to the sidebar.</p>
<p><a href="http://myblogit.net/wp-content/uploads/2008/05/screenshot.jpg"><img class="alignnone size-full wp-image-239" title="WordPress Theme Loopy Rainbow" src="http://myblogit.net/wp-content/uploads/2008/05/screenshot.jpg" alt="WordPress Theme Loopy Rainbow" width="300" height="225" /></a><br />
<a href="http://myblogit.net/wp-content/uploads/2008/05/loopy-rainbow.zip">Download Loopy Rainbow</a> <a href="http://knowledge.myblogit.net/">Preview it in black</a></p>
<p>I have also added the FireWorks png files so you can make your own skin as well. You can share them with me and I may bundle your skin with it in future updates.</p>
<p>I would love to hear what you think of Loopy Rainbow.</p>
<img src="http://myblogit.net/?ak_action=api_record_view&id=236&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://myblogit.net/2007/07/05/my-first-theme/' rel='bookmark' title='My First Theme Loopy Blue'>My First Theme Loopy Blue</a></li>
<li><a href='http://myblogit.net/2007/09/07/wordpress-theme-upgrade-loopy-blue-2/' rel='bookmark' title='WordPress Theme Upgrade Loopy Blue 2'>WordPress Theme Upgrade Loopy Blue 2</a></li>
<li><a href='http://myblogit.net/2007/09/19/new-theme-loopy-red/' rel='bookmark' title='New Theme: Loopy Red'>New Theme: Loopy Red</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://myblogit.net/2008/05/18/free-wordpress-theme-loopy-rainbow/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Free WordPress Theme:Political Politics</title>
		<link>http://myblogit.net/2008/01/31/free-wordpress-themepolitical-politics/</link>
		<comments>http://myblogit.net/2008/01/31/free-wordpress-themepolitical-politics/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 01:40:35 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[My Themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://myblogit.net/2008/01/31/free-wordpress-themepolitical-politics/</guid>
		<description><![CDATA[A Political WordPress theme for you guys! Its a 3 Column widget ready with 2 built-in Adsense spots. Valid XHTML! Demo Political Politics &#124; Download Political Politics You can add your Adsense publisher numbers in the files adsanse_sidebar.php &#38; adsanse_top.php. Open bio.php to edit your bio. Related posts: Free WordPress Theme RoseWood Free WordPress Theme: [...]
Related posts:<ol>
<li><a href='http://myblogit.net/2008/07/14/free-wordpress-theme-rosewood/' rel='bookmark' title='Free WordPress Theme RoseWood'>Free WordPress Theme RoseWood</a></li>
<li><a href='http://myblogit.net/2007/10/18/free-wordpress-theme-sport-fishing/' rel='bookmark' title='Free WordPress Theme: Sport Fishing'>Free WordPress Theme: Sport Fishing</a></li>
<li><a href='http://myblogit.net/2008/05/18/free-wordpress-theme-loopy-rainbow/' rel='bookmark' title='Free WordPress Theme Loopy Rainbow'>Free WordPress Theme Loopy Rainbow</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A Political WordPress theme for you guys! Its a 3 Column widget ready with 2 built-in Adsense spots. Valid XHTML!</p>
<p><img src="http://myblogit.net/wp-content/uploads/2008/01/screenshot1.png" alt="Political Politics" /></p>
<p><a title="Demo Political Politics" href="http://knowledge.myblogit.net/index.php?preview_theme=Political%20Politics">Demo Political Politics</a> | <a title="Download Political Politics" href="http://myblogit.net/wp-content/uploads/2008/01/politics.zip">Download Political Politics</a></p>
<p>You can add your Adsense publisher numbers in the files adsanse_sidebar.php &amp; adsanse_top.php. Open bio.php to edit your bio.</p>
<img src="http://myblogit.net/?ak_action=api_record_view&id=207&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://myblogit.net/2008/07/14/free-wordpress-theme-rosewood/' rel='bookmark' title='Free WordPress Theme RoseWood'>Free WordPress Theme RoseWood</a></li>
<li><a href='http://myblogit.net/2007/10/18/free-wordpress-theme-sport-fishing/' rel='bookmark' title='Free WordPress Theme: Sport Fishing'>Free WordPress Theme: Sport Fishing</a></li>
<li><a href='http://myblogit.net/2008/05/18/free-wordpress-theme-loopy-rainbow/' rel='bookmark' title='Free WordPress Theme Loopy Rainbow'>Free WordPress Theme Loopy Rainbow</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://myblogit.net/2008/01/31/free-wordpress-themepolitical-politics/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>New WordPress Theme:Squeeze Page</title>
		<link>http://myblogit.net/2008/01/10/new-wordpress-themesqueeze-page/</link>
		<comments>http://myblogit.net/2008/01/10/new-wordpress-themesqueeze-page/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 05:25:24 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Free Themes]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[My Themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://myblogit.net/2008/01/10/new-wordpress-themesqueeze-page/</guid>
		<description><![CDATA[I was helping a friend with the design of a squeeze page today and it inspired me. It&#8217;s a single column, widget ready theme, with 3 column sidebar at the bottom and a page menu at the top. Download Squeeze Page &#124; Preview Squeeze Page Please tell me what you think. UPDATE Yan from [Geeks [...]
Related posts:<ol>
<li><a href='http://myblogit.net/2007/08/28/wordpress-1-page-diffrent-look/' rel='bookmark' title='WordPress: 1 Page Diffrent Look'>WordPress: 1 Page Diffrent Look</a></li>
<li><a href='http://myblogit.net/2008/01/31/free-wordpress-themepolitical-politics/' rel='bookmark' title='Free WordPress Theme:Political Politics'>Free WordPress Theme:Political Politics</a></li>
<li><a href='http://myblogit.net/2007/10/18/free-wordpress-theme-sport-fishing/' rel='bookmark' title='Free WordPress Theme: Sport Fishing'>Free WordPress Theme: Sport Fishing</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I was helping a friend with the design of a squeeze page today and it inspired me.</p>
<p>It&#8217;s a single column, widget ready theme, with 3 column sidebar at the bottom and a page menu at the top.</p>
<p><img src="http://myblogit.net/wp-content/uploads/2008/01/screenshot.png" alt="Squeeze Page" /></p>
<p><a href="http://myblogit.net/wp-content/uploads/2008/01/squeeze_page.zip">Download Squeeze Page</a> | <a href="http://knowledge.myblogit.net/index.php?preview_theme=Squeeze%20Page">Preview Squeeze Page</a></p>
<p>Please tell me what you think.</p>
<p><strong>UPDATE </strong></p>
<p><span class="fn"><a href="http://twitter.com/geeksaresexy">Yan</a> from </span> <a href="http://www.geeksaresexy.net/">[Geeks Are Sexy]</a> reported a bug in the header. It&#8217;s been fixed. Thanks Yan!</p>
<img src="http://myblogit.net/?ak_action=api_record_view&id=198&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://myblogit.net/2007/08/28/wordpress-1-page-diffrent-look/' rel='bookmark' title='WordPress: 1 Page Diffrent Look'>WordPress: 1 Page Diffrent Look</a></li>
<li><a href='http://myblogit.net/2008/01/31/free-wordpress-themepolitical-politics/' rel='bookmark' title='Free WordPress Theme:Political Politics'>Free WordPress Theme:Political Politics</a></li>
<li><a href='http://myblogit.net/2007/10/18/free-wordpress-theme-sport-fishing/' rel='bookmark' title='Free WordPress Theme: Sport Fishing'>Free WordPress Theme: Sport Fishing</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://myblogit.net/2008/01/10/new-wordpress-themesqueeze-page/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

