<?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>Wordpress Master &#187; Wordpress Theme Tips</title>
	<atom:link href="http://www.wordpress-master.com/category/wordpress-theme-tips/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wordpress-master.com</link>
	<description>Teaching Wordpress to the World</description>
	<lastBuildDate>Sat, 19 Jun 2010 13:40:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Want to add a Widget to your Wordpress Blog?</title>
		<link>http://www.wordpress-master.com/add-a-widget-to-your-wordpress-blog.html</link>
		<comments>http://www.wordpress-master.com/add-a-widget-to-your-wordpress-blog.html#comments</comments>
		<pubDate>Fri, 12 Mar 2010 02:08:04 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Wordpress Advanced]]></category>
		<category><![CDATA[Wordpress General Tips]]></category>
		<category><![CDATA[Wordpress Theme Tips]]></category>
		<category><![CDATA[Appearance Section]]></category>
		<category><![CDATA[Array Name]]></category>
		<category><![CDATA[Control]]></category>
		<category><![CDATA[Custom Functions]]></category>
		<category><![CDATA[Default Text]]></category>
		<category><![CDATA[Div Id]]></category>
		<category><![CDATA[Endif]]></category>
		<category><![CDATA[Footer]]></category>
		<category><![CDATA[H3]]></category>
		<category><![CDATA[Html Files]]></category>
		<category><![CDATA[Key Point]]></category>
		<category><![CDATA[Level Control]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Php File]]></category>
		<category><![CDATA[Site Php]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[Ul]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[Widgets]]></category>
		<category><![CDATA[Wordpress Blog]]></category>
		<category><![CDATA[wordpress help]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=539</guid>
		<description><![CDATA[One of my favorite features of Wordpress is the fact that it is so very customizable.  And it's so very easy to add in pieces that maintains a level of control over the site without having to manually change PHP or HTML files.  You can access it all from within the back end of Wordpress. You can customize these pieces and this extra control with Widgets.  I'm not going to go into to much detail here.  If you've been using Wordpress for very long you know what Widgets are.]]></description>
			<content:encoded><![CDATA[<p></p><p>One of my favorite features of Wordpress is the fact that it is so very customizable.  And it&#8217;s so very easy to add in pieces that maintains a level of control over the site without having to manually change PHP or HTML files.  You can access it all from within the back end of Wordpress.</p>
<p>You can customize these pieces and this extra control with Widgets.  I&#8217;m not going to go into to much detail here.  If you&#8217;ve been using Wordpress for very long you know what Widgets are.</p>
<p>The key point here is that you can add a Widget section and then easily control, add, edit the content of that section from the admin of Wordpress under the Appearance section.</p>
<p>Adding a Widget section is pretty straight forward even.  In your functions.php file, (or custom_functions.php for Thesis) you will just need to add something similar to the following line:</p>
<p><code>register_sidebar(array('name'=&gt;'New Widget', 'before_title'=&gt;'&lt;h3&gt;', 'after_title'=&gt;'&lt;/h3&gt;'));</code></p>
<p>The above is pretty simple right?  The &#8220;name&#8221; is set to whatever you want to call it.  And then you set the tags you want to wrap around the title. Make sure you use something descriptive for the name so you know what the widget is for.</p>
<p>After adding this to the function file you should be able to visit the Widgets section under Appearance and start adding Widgets to it immediately.</p>
<p>But we still have to decide where the widget is going to show up.</p>
<p>So in your template page you&#8217;ll need to add some code to set where the Widget shows up.  Usually you&#8217;ll add some default text that will display if there are no Widgets for that section yet.  Here&#8217;s an example, naturally you can style it how you want:</p>
<p><code>&lt;div id="footer-widgeted"&gt;<br />
&lt;div&gt;<br />
&lt;ul id="footer-widget"&gt;<br />
&lt;?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('New Widget') ) : ?&gt;<br />
&lt;li&gt;<br />
&lt;h3&gt;Testing Widget Area&lt;/h3&gt;<br />
&lt;p&gt;This is an example of a widgeted area.&lt;/p&gt;<br />
&lt;/li&gt;<br />
&lt;?php endif; ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
</code></p>
<p>That should do it.  In a future post I&#8217;ll go into more detail and give some specific examples of adding widgets around a site.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Fadd-a-widget-to-your-wordpress-blog.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Fadd-a-widget-to-your-wordpress-blog.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/add-a-widget-to-your-wordpress-blog.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why should you be taking responsibility for your 404 errors?</title>
		<link>http://www.wordpress-master.com/taking-responsibility-404-errors.html</link>
		<comments>http://www.wordpress-master.com/taking-responsibility-404-errors.html#comments</comments>
		<pubDate>Wed, 18 Nov 2009 17:20:35 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Setting Up Wordpress]]></category>
		<category><![CDATA[Wordpress Theme Tips]]></category>
		<category><![CDATA[404 error]]></category>
		<category><![CDATA[Address]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[blog publishing]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Default Error]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Illiterate Person]]></category>
		<category><![CDATA[Oh Yeah]]></category>
		<category><![CDATA[Proactive]]></category>
		<category><![CDATA[Suitable Replacement]]></category>
		<category><![CDATA[Taking Responsibility]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=490</guid>
		<description><![CDATA[Are you blaming your visitors for getting a 404 error?  And more importantly is it really their fault?  And even if it is their fault, is it better to take the blame and help them move to a page that does exist, or just go ahead and leave a default error page up and loose that visitor to the rest of the internet?]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.wordpress-master.com/taking-responsibility-404-errors.html" title="Permanent link to Why should you be taking responsibility for your 404 errors?"><img class="post_image alignright" src="http://www.wordpress-master.com/wp-content/uploads/2009/11/404d-it.jpg" width="200" height="212" alt="404 error" /></a>
</p><p>If you&#8217;ve been online for very long you&#8217;ve probably clicked at least one link or visited some page that resulted in a 404 error.  I even went and asked a friend of mine, who is probably the most internet illiterate person I know, about 404 errors.  She immediately responded with oh yeah 404 I see that pop up sometimes, it means the page can&#8217;t be found or something right?  I just go back or leave immediately and try to find what I need elsewhere.</p>
<p>This is part of the problem I see everywhere.  When I do see a 404, the majority of the time, I usually notice that the error page is blaming me for going to a page that no longer exists.  And probably more than 90% of the time all I did to get there was click a link from some other website.  So how exactly is it my fault again?</p>
<p>Are you blaming your visitors for getting a 404 error?  And more importantly is it really their fault?  And even if it is their fault, is it better to take the blame and help them move to a page that does exist, or just go ahead and leave a default error page up and loose that visitor to the rest of the internet?</p>
<p>Personally, I feel responsible for all 404 errors that someone might get on my site.  The time the visitor might have clicked a link from Google that no longer exists.  Maybe they clicked a link from another blog where the other blogger typed the link wrong.</p>
<p>I should have been redirecting any pages I deleted to a suitable replacement.  Or I should be watching for incoming links to my site and if they are wrong redirecting them to appropriate pages.  The idea is that I feel I should be as proactive as possible to prevent 404 errors when possible, and when I fail to do so it is my fault.</p>
<p>There of course are some 404 errors that you can never find or be proactive to take care of, such as a visitor manually typing an address on your pages and ending up at a 404.  But even in this case I don&#8217;t want to just blame them and loose a visitor.  Instead I&#8217;d rather accept the blame and try to help that person the best I can to move into a legitimate page on my site.</p>
<p>So what are your thoughts?  Most people over look this area of their site, and maybe it&#8217;s not a huge issue, but when fine tuning your site it is something often overlooked.  How would you better your 404 error page?
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Ftaking-responsibility-404-errors.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Ftaking-responsibility-404-errors.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/taking-responsibility-404-errors.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Hottest Wordpress Theme on the Market just got Hotter</title>
		<link>http://www.wordpress-master.com/wordpress-thesis-theme-just-got-hotter.html</link>
		<comments>http://www.wordpress-master.com/wordpress-thesis-theme-just-got-hotter.html#comments</comments>
		<pubDate>Tue, 27 Oct 2009 19:14:11 +0000</pubDate>
		<dc:creator>Ed Gately</dc:creator>
				<category><![CDATA[Good Plugins]]></category>
		<category><![CDATA[Plugin Reviews]]></category>
		<category><![CDATA[Wordpress General Tips]]></category>
		<category><![CDATA[Wordpress Theme Tips]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Free Ones]]></category>
		<category><![CDATA[Improvements]]></category>
		<category><![CDATA[Motto]]></category>
		<category><![CDATA[Navigation Menu]]></category>
		<category><![CDATA[new features]]></category>
		<category><![CDATA[Niche]]></category>
		<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[Pleasure]]></category>
		<category><![CDATA[Seo]]></category>
		<category><![CDATA[theme design]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[thesis theme]]></category>
		<category><![CDATA[wordpress theme]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/?p=306</guid>
		<description><![CDATA[
I&#8217;ve been working with Wordpress it seems like forever.  I&#8217;ve tried so many different Wordpress Themes that I couldn&#8217;t count them all.
You have free ones, and if you try them you know you get what you pay for.  But free ones can still work if you are a developer, they&#8217;ll at least put [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://www.wordpress-master.com/wordpress-thesis-theme-just-got-hotter.html" title="Permanent link to The Hottest Wordpress Theme on the Market just got Hotter"><img class="post_image alignright" src="http://www.wordpress-master.com/wp-content/uploads/2009/10/thesis.png" width="125" height="125" alt="Thesis Wordpress Theme" /></a>
</p><p>I&#8217;ve been working with Wordpress it seems like forever.  I&#8217;ve tried so many different Wordpress Themes that I couldn&#8217;t count them all.</p>
<p>You have free ones, and if you try them you know you get what you pay for.  But free ones can still work if you are a developer, they&#8217;ll at least put you at a starting point to make your own creation.<span id="more-306"></span></p>
<p>There are a lot of paid ones as well.  As in any market some better than others.</p>
<p>It&#8217;s all about what features you need, and how well each theme can fill those needs.</p>
<p>The best paid theme I&#8217;ve ever had the pleasure of using, is the <a href="http://www.wordpress-master.com/recommends/thesis">Wordpress Thesis Theme</a>.  There are many themes/templates out there that meet specific needs for a niche set of websites, but the Thesis theme is probably the most flexible theme I&#8217;ve found.</p>
<p>And they just released a new version with all new features:</p>
<ul>
<li>custom file editor in your WordPress dashboard</li>
<li>dropdown navigation menu</li>
<li>comprehensive font color controls and new design controls</li>
</ul>
<p>There are a lot of other improvements in regards to the general design of the theme as well.  Plus what more could you want with the included SEO abilities.  I think this one theme replaces the need for several plugins, which is very cool if you think of plugins in terms of overhead. (watch our blog for an article on this later this week)</p>
<p><a href="http://www.wordpress-master.com/recommends/thesis">About Thesis — Find out more about Thesis and the DIYthemes philosophy</a></p>
<p>Here&#8217;s their motto:</p>
<p style="text-align: center;">
<div id="attachment_307" class="wp-caption alignnone" style="width: 560px">
	<a href="http://www.wordpress-master.com/recommends/thesis"><img class="size-full wp-image-307" title="thesis-theme-tap" src="http://www.wordpress-master.com/wp-content/uploads/2009/10/thesis-theme-tap.jpg" alt="Thesis Theme Motto" width="560" height="282" /></a>
	<p class="wp-caption-text">Thesis Theme Motto</p>
</div>
<p>They really meet this in my opinion.  It&#8217;s always being improved upon.</p>
<p>I&#8217;m going to put together a video later this week to show off some of the Thesis features.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Fwordpress-thesis-theme-just-got-hotter.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Fwordpress-thesis-theme-just-got-hotter.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/wordpress-thesis-theme-just-got-hotter.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Turn Wordpress Into A Sales and Listing Building Machine</title>
		<link>http://www.wordpress-master.com/turn-wordpress-into-a-sales-and-listing-build-machine.html</link>
		<comments>http://www.wordpress-master.com/turn-wordpress-into-a-sales-and-listing-build-machine.html#comments</comments>
		<pubDate>Mon, 31 Aug 2009 16:14:14 +0000</pubDate>
		<dc:creator>David Porter</dc:creator>
				<category><![CDATA[Wordpress Blogging]]></category>
		<category><![CDATA[Wordpress Monetization]]></category>
		<category><![CDATA[Wordpress Theme Tips]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Cool Themes]]></category>
		<category><![CDATA[flex squeeze]]></category>
		<category><![CDATA[flexsqueeze]]></category>
		<category><![CDATA[Making Money]]></category>
		<category><![CDATA[Optin]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Perfect Time]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Salesletter]]></category>
		<category><![CDATA[Search Engine Changes]]></category>
		<category><![CDATA[selling with wordpress]]></category>
		<category><![CDATA[Seo]]></category>
		<category><![CDATA[Separate Pages]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[Wordpress Blog]]></category>
		<category><![CDATA[wordpress list building]]></category>
		<category><![CDATA[wordpress theme]]></category>
		<category><![CDATA[Wp]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/turn-wordpress-into-a-sales-and-listing-build-machine.html</guid>
		<description><![CDATA[Wordpress IS the ultimate content management system and it&#8217;s progressing more with every update. On top of that, more and more very cool plugins and themes are being developed to help make your Wordpress sites the best they can be.
I did a post a while back about using Wordpress as a salesletter for your products [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><strong>Wordpress IS the ultimate content management system</strong> and it&#8217;s progressing more with every update. On top of that, more and more very cool plugins and themes are being developed to help make your Wordpress sites the best they can be.</p>
<p>I did a post a while back about <a href="http://www.wordpress-master.com/wordpress-as-a-salesletter-and-better-seo.html">using Wordpress as a salesletter</a> for your products and services.</p>
<p>In that post I talked about how you can use Wordpress to present your product or service salesletters and still get all of the huge SEO benefits that come with Wordpress.</p>
<p>Now I want to tell you about very cool WP Theme that ROCKS THE HOUSE when it comes to selling products and services and using Wordpress.</p>
<p>The theme is call &#8220;<a href="https://www.e-junkie.com/ecom/gb.php?cl=47128&amp;c=ib&amp;aff=83625" target="_blank">FlexSqueeze</a>&#8221; and it&#8217;s AMAZING!</p>
<p>This one theme lets you have BOTH a normal Wordpress blog AND separate pages in full salesletter and &#8220;SqueezePage&#8221; format.</p>
<p>This is the ULTIMATE Wordpress theme right now.</p>
<p>Imagine being able to have all of the power of normal search engine optimized WP blog, and being able to setup special optin and product pages that are built to convert more people into buys and still have the powerful WP SEO built right in.</p>
<p><strong>It&#8217;s amazing.</strong></p>
<p align="center"><a href="https://www.e-junkie.com/ecom/gb.php?cl=47128&amp;c=ib&amp;aff=83625" target="_blank"><img src="http://www.wordpress-master.com/wp-content/uploads/2009/08/flex-vid-shot.jpg" alt="flex-vid-shot" width="474" height="373" /></a></p>
<p>With all of the search engine changes and it getting harder to get really good SE ranks without some sort of a blog or power system behind your sites, this is the perfect time to start using Wordpress as much as possible for ALL of your websites.</p>
<p>&#8220;<a href="https://www.e-junkie.com/ecom/gb.php?cl=47128&amp;c=ib&amp;aff=83625" target="_blank">FlexSqueeze</a>&#8221; is an all-in-one answer.</p>
<ul>
<li>
<div><strong>Listing building -</strong> covered</div>
</li>
<li>
<div><strong>Salesletters -</strong> covered</div>
</li>
<li>
<div><strong>Normal blogging -</strong> covered</div>
</li>
</ul>
<p>And when you add the power of other WP plugins like <a href="http://semperfiwebdesign.com/blog/all-in-one-seo-pack-new-cms-features/">All-In-One SEO</a> and <a href="http://alexking.org/blog/2009/08/03/twitter-tools-2-0" target="_blank">Twitter Tools</a> and some of the other more powerful plugins, you&#8217;re blog is going to skyrocket and you&#8217;ll see more optins and customers.</p>
<p><strong>So &#8211; should you get the &#8220;</strong><a href="https://www.e-junkie.com/ecom/gb.php?cl=47128&amp;c=ib&amp;aff=83625" target="_blank"><strong>FlexSqueeze</strong></a><strong>&#8221; theme?</strong></p>
<p>Well, are you serious about blogging and making money &#8211; that&#8217;s the question you should be asking yourself.</p>
<p>If you are serious, then <span style="text-decoration: underline;">YES</span>! &#8211; if you&#8217;re not that serious, just go get a free theme from the <a href="http://wordpress.org/extend/themes/" target="_blank">Wordpress theme site</a>.</p>
<p><strong>I recommend &#8220;</strong><a href="https://www.e-junkie.com/ecom/gb.php?cl=47128&amp;c=ib&amp;aff=83625" target="_blank"><strong>FlexSqueeze</strong></a><strong>&#8221; though</strong> <img src='http://www.wordpress-master.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Fturn-wordpress-into-a-sales-and-listing-build-machine.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Fturn-wordpress-into-a-sales-and-listing-build-machine.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/turn-wordpress-into-a-sales-and-listing-build-machine.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress Theme Design Cheat Sheet &#8211; FREE!</title>
		<link>http://www.wordpress-master.com/wordpress-theme-design-cheat-sheet-free.html</link>
		<comments>http://www.wordpress-master.com/wordpress-theme-design-cheat-sheet-free.html#comments</comments>
		<pubDate>Tue, 18 Aug 2009 18:03:07 +0000</pubDate>
		<dc:creator>David Porter</dc:creator>
				<category><![CDATA[Wordpress News]]></category>
		<category><![CDATA[Wordpress Resources]]></category>
		<category><![CDATA[Wordpress Theme Tips]]></category>
		<category><![CDATA[Benefit]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Cheat Sheet]]></category>
		<category><![CDATA[Header Php]]></category>
		<category><![CDATA[Info Tools]]></category>
		<category><![CDATA[Php Snippets]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Template Files]]></category>
		<category><![CDATA[theme design]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[wordpress theme]]></category>
		<category><![CDATA[wordpress theme design]]></category>
		<category><![CDATA[wordpress theme help]]></category>
		<category><![CDATA[Wp]]></category>
		<category><![CDATA[wp theme help]]></category>

		<guid isPermaLink="false">http://www.wordpress-master.com/wordpress-theme-design-cheat-sheet-free.html</guid>
		<description><![CDATA[So there I was, looking around the search engines for some new info, tools and resources to help my coaching clients with their WP blogs, and I came across this very interesting &#8220;Cheat Sheet&#8221; for WP themes.
Now I think it&#8217;s safe to say to that most people know having a custom WP theme has huge [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>So there I was, looking around the search engines for some new info, tools and resources to help my coaching clients with their WP blogs, and I came across this very interesting &#8220;Cheat Sheet&#8221; for WP themes.</p>
<p>Now I think it&#8217;s safe to say to that most people know having a custom WP theme has huge benefits, but most people out there don&#8217;t know anything about the subject.</p>
<p>So, I wanted to share it with you&#8230;</p>
<blockquote><p>The WordPress Help Sheet includes the following:</p>
<p>* Basic Template Files<br />
* PHP Snippets for the Header<br />
* PHP Snippets for the Templates<br />
* And Extra Stuff for WordPress</p>
<p>Read More At: <a href="http://wpcandy.com/articles/tutorials/the-wordpress-help-sheet.html">http://wpcandy.com/articles/tutorials/the-wordpress-help-sheet.html</a></p></blockquote>
<p>Having a &#8220;Cheat Sheet&#8221; is a great benefit and much needed resource for even the seasoned pro when it comes to WP themes.</p>
<p>I recommend go to the address above and grabbing a copy of the &#8220;Cheat Sheet&#8221; now &#8211; it&#8217;s FREE which makes it even better as a needed resources <img src='http://www.wordpress-master.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.wordpress-master.com%2Fwordpress-theme-design-cheat-sheet-free.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.wordpress-master.com%2Fwordpress-theme-design-cheat-sheet-free.html&amp;source=wordpressmaster&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wordpress-master.com/wordpress-theme-design-cheat-sheet-free.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
