<?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> &#187; How to&#8230;</title>
	<atom:link href="http://blogcraving.com/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogcraving.com</link>
	<description>What&#039;s your craving?</description>
	<lastBuildDate>Fri, 23 Mar 2012 05:03:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Tutorial: Different Sidebars for Homepage and Posts</title>
		<link>http://blogcraving.com/tutorial-sidebars-homepage-posts/</link>
		<comments>http://blogcraving.com/tutorial-sidebars-homepage-posts/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 05:11:09 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=936</guid>
		<description><![CDATA[This is an update with full illustrations to an older post. Basic Method: 1) Find your sidebar.php file. 2) Make a copy of it. Name it sidebar-secondary.php. Your second, third, forth, etc. sidebars all need to start with sidebar-NAMEHERE.php. That&#8217;s part of the naming convention in WordPress. 3) Make the content changes you need in [...]]]></description>
			<content:encoded><![CDATA[<p><em>This is an update with full illustrations to an older post.</em></p>
<div>
<h3>Basic Method:</h3>
<p style="text-align: left;">1) Find your sidebar.php file.</p>
<p style="text-align: left;">2) Make a copy of it.<br />
Name it sidebar-secondary.php. Your second, third, forth, etc. sidebars<br />
all need to start with sidebar-NAMEHERE.php. That&#8217;s part of the naming<br />
convention in WordPress.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-331" title="2sidebars" src="http://blogcraving.com/wp-content/uploads/2009/05/2sidebars.gif" alt="2sidebars Tutorial: Different Sidebars for Homepage and Posts" width="188" height="107" /></p>
<p style="text-align: left;">3) Make the content changes you need in secondary sidebar file.<strong> </strong><br />
This is where you make the secondary sidebar different. Whatever it is<br />
you need to be different should go in this file. Save<br />
sidebar-inside.php and upload it to your server.</p>
<p style="text-align: left;">4) Locate your single.php file.</p>
<p style="text-align: left;">5) Look for a line near the end of the file that looks like this: <strong>&lt;?php get_sidebar(); ?&gt;</strong></p>
<p style="text-align: left;">6) Change it to <strong>&lt;?php get_sidebar(&#8216;inside&#8217;); ?&gt;</strong> (note, the &#8216;inside&#8217; part should match the name of the new sidebar-inside.php file). The single quote marks &#8216; &#8216; are required.<span id="more-936"></span></p>
<p style="text-align: center;">Should look like this:</p>
<p><img class="alignnone size-full wp-image-333" title="single1" src="http://blogcraving.com/wp-content/uploads/2009/05/single1.gif" alt="single1 Tutorial: Different Sidebars for Homepage and Posts" width="340" height="140" /></p>
<p style="text-align: left;">7) Save your new single.php file and upload it.</p>
<p style="text-align: left;">8) Done.</p>
<p>You&#8217;ve now made two separate sidebars. You then told your single.php<br />
file (single posts) go fetch a different sidebar file than your<br />
index.php (homepage) does. Your homepage will pull in the old<br />
sidebar.php file. Your single posts will pull in the<br />
sidebar-secondary.php file.</p>
<p><strong>Note:</strong> In your sidebar-inside.php file, you will want to<br />
remove the dynamic sidebar components. Otherwise, your homepage widgets<br />
will also show up on your inside pages. Look for a line like this:</p>
<p style="text-align: center;"><strong>&lt;?php if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar() ) : ?&gt;. </strong></p>
<p>Only remove that line of code from the file if you do not need the<br />
new sidebar to have dynamic widget functionality. Otherwise, if you<br />
would like to wigetize this sidebar, proceed to the next lesson below.</p>
<p>If you would like to get a fully detailed version of these<br />
instructions with illustrations and screen shots, just fill out your<br />
name and email address below. We will send you the documentation<br />
instantly. It is far more detailed and contains useful screen shots for<br />
you to follow along.</p>
<h2>How to make your new sidebar Widget Ready or Dynamic:</h2>
<p>We have to do two things. 1) Register your sidebars to your<br />
Wordpress backend knows you have two ready for widgets. 2) Tell each<br />
sidebar.php page which set of widgets to pull in.</p>
<p>Here we go:</p>
<p>1) Find your functions.php file.</p>
<p>2) Look for the register_sidebar section. It will look something like this:</p>
<blockquote><p>if ( function_exists(&#8216;register_sidebar&#8217;) )</p>
<p>register_sidebar(array(</p>
<p>&#8216;name&#8217; =&gt; &#8216;Homepage Sidebar&#8217;,</p>
<p>&#8216;id&#8217; =&gt; &#8216;homepage_only&#8217;,</p>
<p>&#8216;before_widget&#8217; =&gt; &#8216;&lt;li id=&#8221;%1$s&#8221; class=&#8221;widget %2$s&#8221;&gt;&#8217;,</p>
<p>&#8216;after_widget&#8217; =&gt; &#8216;&lt;/li&gt;&#8217;,</p>
<p>&#8216;before_title&#8217; =&gt; &#8216;&lt;h2 class=&#8221;widgettitle&#8221;&gt;&#8217;,</p>
<p>&#8216;after_title&#8217; =&gt; &#8216;&lt;/h2&gt;&#8217;,</p>
<p>));</p></blockquote>
<p style="text-align: center;">Illustration</p>
<p><img class="alignnone size-large wp-image-334" title="oldfunction" src="http://blogcraving.com/wp-content/uploads/2009/05/oldfunction-540x99.gif" alt="oldfunction 540x99 Tutorial: Different Sidebars for Homepage and Posts" width="540" height="99" /></p>
<p>It may not contain all of the lines such as &#8216;name&#8217; or &#8216;id&#8217;. It may<br />
not even exist at all. In the next step, you will overwrite the old<br />
version. If you don&#8217;t have one, you will make one now.</p>
<p>3) Set number 1 will control the homepage sidebar and should be setup to look like this:</p>
<blockquote><p>if ( function_exists(&#8216;register_sidebar&#8217;) )</p>
<p>register_sidebar(array(</p>
<p>&#8216;name&#8217; =&gt; &#8216;Homepage Sidebar&#8217;,</p>
<p>&#8216;id&#8217; =&gt; &#8216;homepage_only&#8217;,</p>
<p>&#8216;before_widget&#8217; =&gt; &#8216;&lt;li id=&#8221;%1$s&#8221; class=&#8221;widget %2$s&#8221;&gt;&#8217;,</p>
<p>&#8216;after_widget&#8217; =&gt; &#8216;&lt;/li&gt;&#8217;,</p>
<p>&#8216;before_title&#8217; =&gt; &#8216;&lt;h2 class=&#8221;widgettitle&#8221;&gt;&#8217;,</p>
<p>&#8216;after_title&#8217; =&gt; &#8216;&lt;/h2&gt;&#8217;,</p>
<p>));</p></blockquote>
<p style="text-align: center;">Illustration</p>
<p><img class="alignnone size-full wp-image-335" title="set1" src="http://blogcraving.com/wp-content/uploads/2009/05/set1.gif" alt="set1 Tutorial: Different Sidebars for Homepage and Posts" width="647" height="118" /></p>
<p>&#8216;name&#8217; =&gt; &#8216;Homepage Sidebar&#8217;, will refer simply to the name of<br />
the sidebar that shows up on the Widgets admin page drop down list.</p>
<p>&#8216;id&#8217; =&gt; &#8216;homepage_only&#8217;, is a unique ID just for that sidebar set. We will add this ID to the sidebar templates later.</p>
<p>4) Next, make the second set for the inside pages:</p>
<blockquote><p>if ( function_exists(&#8216;register_sidebar&#8217;) )</p>
<p>register_sidebar(array(</p>
<p>&#8216;name&#8217; =&gt; &#8216;Inside Pages No Cal&#8217;,</p>
<p>&#8216;id&#8217; =&gt; &#8216;inside_pages&#8217;,</p>
<p>&#8216;before_widget&#8217; =&gt; &#8216;&lt;li id=&#8221;%1$s&#8221; class=&#8221;widget %2$s&#8221;&gt;&#8217;,</p>
<p>&#8216;after_widget&#8217; =&gt; &#8216;&lt;/li&gt;&#8217;,</p>
<p>&#8216;before_title&#8217; =&gt; &#8216;&lt;h2 class=&#8221;widgettitle&#8221;&gt;&#8217;,</p>
<p>&#8216;after_title&#8217; =&gt; &#8216;&lt;/h2&gt;&#8217;,</p>
<p>));</p></blockquote>
<p>The above set is almost identical to set #1.  The only change is the &#8216;name&#8217; and &#8216;id&#8217;.  For the name of this sidebar, we decided to call it &#8216;Inside Pages No Cal&#8217;.  You can call it whatever you would like.</p>
<p>5) STOP. This is how a section inside your functions.php file should now look:</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-336" title="both" src="http://blogcraving.com/wp-content/uploads/2009/05/both.gif" alt="both Tutorial: Different Sidebars for Homepage and Posts" width="607" height="229" /></p>
<p>6) Continue.</p>
<p>7) Locate your sidebar.php file.</p>
<p>8) Locate the line that looks like this:</p>
<p style="text-align: center;"><strong>&lt;?php if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar() ) : ?&gt;</strong></p>
<p style="text-align: left;">9) Make it look like this:</p>
<p style="text-align: center;"><strong>&lt;?php if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8216;homepage_only&#8217;) ) : ?&gt;</strong></p>
<p style="text-align: center;">Illustration</p>
<p><img class="alignnone size-full wp-image-337" title="homeonly" src="http://blogcraving.com/wp-content/uploads/2009/05/homeonly.gif" alt="homeonly Tutorial: Different Sidebars for Homepage and Posts" width="716" height="56" /></p>
<p style="text-align: left;">You have now told your single-inside.php file to go look specifically for the widgets assigned to the homepage_only function.</p>
<p style="text-align: left;">10) Locate your sidebar-secondary.php file.</p>
<p style="text-align: left;">11) Locate the line that looks like this. If none exists, don&#8217;t worry.</p>
<p style="text-align: center;"><strong>&lt;?php if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar() ) : ?&gt;</strong></p>
<p>12) Make the line look like this. If you do not have this line,<br />
simply add it in the possition where you want your dynamic widgets to<br />
appear.</p>
<p style="text-align: center;"><strong>&lt;?php if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8216;inside_pages&#8217;) ) : ?&gt;</strong></p>
<p style="text-align: center;">Illustration</p>
<p><img class="alignnone size-full wp-image-338" title="insideonly" src="http://blogcraving.com/wp-content/uploads/2009/05/insideonly.gif" alt="insideonly Tutorial: Different Sidebars for Homepage and Posts" width="737" height="56" /></p>
<p style="text-align: left;">You have now told your single.php file to go look specifically for the widgets assigned to the homepage_only function.</p>
<p style="text-align: left;">13) Upload your newly changed functions.php, sidebar.php, and sidebar-secondary.php files to your server.</p>
<p style="text-align: left;">14) Earlier<br />
in the basic method, we already changed your single.php file to pull in<br />
the sidebar-inside.php file. So at this point, you are all done.  If<br />
you did not do this, go back to Step 5 in the Basic Method instructions.</p>
<p style="text-align: left;">You can<br />
now log into your WordPress Admin and go to the widgets section. You<br />
will now see a dropdown menu with your Homepage Sidebar and Inside<br />
Sidebar listed. You can add widgets separately to each sidebar. When<br />
you save, the changes will update on your site.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-339" title="widgets_dash" src="http://blogcraving.com/wp-content/uploads/2009/05/widgets_dash.gif" alt="widgets dash Tutorial: Different Sidebars for Homepage and Posts" width="328" height="358" /></p>
<div style="text-align: left;">All done!  Hope this was helpful for you.</div>
<div style="text-align: left;"></div>
<div style="text-align: left;">Visit http://blogcraving.com for more helpful tips, tricks, and money making ideas for your WordPress blog!</div>
</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/tutorial-sidebars-homepage-posts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PSD to WordPress Conversion Instructions</title>
		<link>http://blogcraving.com/free-psd-wordpress-conversion-tutorial/</link>
		<comments>http://blogcraving.com/free-psd-wordpress-conversion-tutorial/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 23:30:54 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=899</guid>
		<description><![CDATA[Section 1 &#8211; Designing a WordPress theme in Photoshop Designing a theme for WordPress in Photoshop is straightforward. In our example today, we will create a simple two column fixed width theme. Before we start, we need to decide what the width of our theme will be. I chose a 980-pixel sixe because it will [...]]]></description>
			<content:encoded><![CDATA[<h3>Section 1 &#8211; Designing a WordPress theme in Photoshop</h3>
<p>Designing a theme for WordPress in Photoshop is straightforward. In our example today, we will create a simple two column fixed width theme. Before we start, we need to decide what the width of our theme will be. I chose a 980-pixel sixe because it will fit on most screens without the need to scroll form side to side, as most screens today are at least 1024 pixels wide.</p>
<p>To get started create a rectangle that is 1024px x 768px. This will serve as our background for the theme. You can color your backgrounds or even add an image. For our tutorial, we will color the background blue.<span id="more-899"></span></p>
<p><a href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/psd_to_wordpress_theme/" rel="attachment wp-att-900"><img class="aligncenter size-full wp-image-900" title="psd_to_wordpress_theme" src="http://blogcraving.com/wp-content/uploads/2012/01/psd_to_wordpress_theme.png" alt="psd to wordpress theme PSD to Wordpress Conversion Instructions" width="588" height="333" /></a></p>
<p>Next, we will layout the theme container. Later this will be defined in the web pages we create, but now let’s add a white rectangle 980pxx768px. This represents the themes overall width and the container that will hold our theme.</p>
<p><a href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/psd_to_wordpress_theme2-2/" rel="attachment wp-att-902"><img class="aligncenter size-full wp-image-902" title="psd_to_wordpress_theme2" src="http://blogcraving.com/wp-content/uploads/2012/01/psd_to_wordpress_theme21.png" alt="psd to wordpress theme21 PSD to Wordpress Conversion Instructions" width="588" height="333" /></a></p>
<p>Now that we have the basic layout done let’s look at the different sections we will be creating. Our theme will have four basic sections:</p>
<ul>
<li>Header</li>
<li>Content</li>
<li>Sidebar</li>
<li>Foote</li>
</ul>
<p><a href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/psd_to_wordpress_theme3/" rel="attachment wp-att-903"><img class="aligncenter size-full wp-image-903" title="psd_to_wordpress_theme3" src="http://blogcraving.com/wp-content/uploads/2012/01/psd_to_wordpress_theme3.png" alt="psd to wordpress theme3 PSD to Wordpress Conversion Instructions" width="297" height="228" /></a></p>
<p>We will add each section to our theme layout starting with the header. For this tutorial, I have decided to create a header that is 175px tall and I will add 13px above the header also. To do this I will create a box that is 188px x 980px aligned with the top of the page.</p>
<p><a href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/psd_to_wordpress_theme4/" rel="attachment wp-att-904"><img class="aligncenter size-full wp-image-904" title="psd_to_wordpress_theme4" src="http://blogcraving.com/wp-content/uploads/2012/01/psd_to_wordpress_theme4.png" alt="psd to wordpress theme4 PSD to Wordpress Conversion Instructions" width="588" height="303" /></a></p>
<p>I now have the basic header shape in place. Remember I added 13px for a border at the top so I want to represent that in my design. If you have an image for your header, you can now format it to the right dimensions and paste it into the PSD like this.</p>
<p><a href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/psd_to_wordpress_theme5/" rel="attachment wp-att-906"><img class="aligncenter size-full wp-image-906" title="psd_to_wordpress_theme5" src="http://blogcraving.com/wp-content/uploads/2012/01/psd_to_wordpress_theme5.png" alt="psd to wordpress theme5 PSD to Wordpress Conversion Instructions" width="587" height="303" /></a></p>
<p>I have decided to put the menu right below the header and to make it approximately 30px in height. To do this, I will create a rectangle 30px x 980px under the header image.</p>
<p><a href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/psd_to_wordpress_theme6/" rel="attachment wp-att-907"><img class="aligncenter size-full wp-image-907" title="psd_to_wordpress_theme6" src="http://blogcraving.com/wp-content/uploads/2012/01/psd_to_wordpress_theme6.png" alt="psd to wordpress theme6 PSD to Wordpress Conversion Instructions" width="589" height="200" /></a></p>
<p>I have decided to put the menu right below the header and to make it approximately 30px in height. To do this, I will create a rectangle 30px x 980px under the header image.</p>
<p>That is it, we have a design we can now transfer to a theme. Before we start coding, let’s look at some of the basics of a WordPress theme.<!--more--></p>
<h3>Section 2 &#8211; WordPress Themes Overview</h3>
<p>Before we convert our WordPress theme design into a usable WordPress theme, it is important to understand the various parts of a theme and how they work together.</p>
<p>A WordPress theme is made up of a collection of:</p>
<ul>
<li>web pages,</li>
<li>Style sheets, and</li>
<li>Images.</li>
</ul>
<p>These elements comprise the theme and are located in a folder within the WordPress installation directories. All themes are located in subfolders within the wp-content/themes/ folder.</p>
<p>The elements that make up a WordPress theme consist of three types in addition to the images. The style sheets or CSS files control the presentation or look of the theme. They define the colors used and how the data is displayed visually. The web pages are divided into two different types the template files and the optional functions.php files. The functions.php file is used for many things, but if you are going to create a widget ready theme, you will put the code to do this in the functions.php file. The template files generate the data or content that is displayed as a webpage.</p>
<p>Every WordPress theme must have at least two files:</p>
<ul>
<li>index.php and</li>
<li>style.css.</li>
</ul>
<p>Other optional pages include:</p>
<ul>
<li>home.php,</li>
<li>functions.php,</li>
<li>single.php,</li>
<li>page.php,</li>
<li>archive.php,</li>
<li>category.php,</li>
<li>search.php,</li>
<li>404.php,</li>
<li>comments.php,</li>
<li>comments-popup.php,</li>
<li>author.php, and</li>
<li>date.php.</li>
</ul>
<p>Each of these pages performs a different function and we will cover these later. Let’s look at each of the page types in more detail.</p>
<h3>CSS pages- The Theme Style Sheet</h3>
<p>As we discovered earlier, the CSS page or style.css controls the presentation or the look of our theme. It also does much more. The style.css also provides the details about the theme in the form of comments. WordPress does not allow any two themes to have the same details in their comments. They do this because two themes with the same details would cause problems in the theme selection pages.</p>
<p>At the top of every style sheet are the details about the theme. These are used in the theme selection page. The style sheet comments are organized as follows:</p>
<p>Theme Name:  <strong>Your theme’s name</strong></p>
<p>Theme URI:  <strong>The theme’s home page</strong></p>
<p>Description:  <strong>The theme’s description</strong></p>
<p>Author:  <strong>The author’s name</strong></p>
<p>Author URI:  <strong>The author’s web page</strong></p>
<p>Template:  <strong>This optional field defines a parent theme if one is used</strong></p>
<p>Version:  <strong>The theme’s version number</strong></p>
<p>If you are using a parent theme you will need use the name of the directory of the style in the Template field.</p>
<h3>The Theme Functions.php File</h3>
<p>To add more advanced functions to a theme you can use the optional functions.php file. The functions.php file acts like a plug-in if it is present in your theme. Some of the typical uses for this file include:</p>
<ul>
<li>Create the code for a widget ready theme</li>
<li>Define functions used in the template files of your theme</li>
<li>Create an admin screen for your theme that gives users the ability to choose options for colors, styles, and other aspects of your theme</li>
</ul>
<p>If you want to see a sample of a functions file that sets up an admin, look at the default WordPress theme. This theme contains a functions.php file that defines functions and an admin screen. If you want to see a list of what is possible wit this file, look at Function Reference list available on <a href="http://www.wordpress.com">www.wordpress.com</a>.</p>
<h3>The Theme Template Files</h3>
<p>As we discovered earlier, WordPress uses web pages or PHP files for templates to generate the pages requested by your site’s visitors. We already saw a list of all the possible templates, so let’s examine the key ones in more detail.</p>
<p>While it is not necessary to use every possible template, it is important to note that WordPress chooses templates based on the template hierarchy, which is available at <a href="http://www.wordpress.com">www.wordpress.com</a> and is not important for the purposes of this book. As the theme designer, you can choose the level of customization you want by designing or not designing the various templates.</p>
<p>As we said earlier, you can create a WordPress theme with just two files:</p>
<ul>
<li>style.css</li>
<li>index.php</li>
</ul>
<p>When we designed our theme, we included several areas including:</p>
<ul>
<li>A header</li>
<li>A footer</li>
<li>A sidebar</li>
<li>A content area</li>
</ul>
<p>All of these areas can be defined in the index.php template file or can each be their own template file in which case the index.php file will define how and where they are used. Note that if you do not create templates for the various template possibilities, WordPress use the built-in default files. The default templates may not match your Theme and you may want to create your own to maintain consistency across the theme.</p>
<p>In our example, we designed a theme that will require the following templates:</p>
<ul>
<li>index.php</li>
<li>sidebar.php</li>
<li>header.php</li>
<li>footer.php</li>
</ul>
<p>To do this we will create an index.php that will call each of the other templates. To do this we will use WordPress tags within the index.php template. The tags we need to use are as follows:<br />
<code></code></p>
<ul>
<li><a href="http://codex.wordpress.org/Function_Reference/get_header">get_header()</a> will call the header.php template</li>
<li><a href="http://codex.wordpress.org/Function_Reference/get_sidebar">get_sidebar()</a>will call the sidebar.php template</li>
<li><a href="http://codex.wordpress.org/Function_Reference/get_footer">get_footer()</a>will call the footer.php template</li>
</ul>
<p>&nbsp;</p>
<p>We will examine this in detail in Section 3 of this book.</p>
<h3>Section 3 – Putting It All Together</h3>
<p>Now that we have designed our theme and learned the basics of building a WordPress theme, it is time to build our theme. To do this let’s start by creating a folder in our WordPress installation. We will name our folder “World” and place it in the wp-content/themes/ folder.<br />
<code><br />
<a href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/psd_to_wordpress_theme8/" rel="attachment wp-att-909"><img class="aligncenter size-full wp-image-909" title="psd_to_wordpress_theme8" src="http://blogcraving.com/wp-content/uploads/2012/01/psd_to_wordpress_theme8.png" alt="psd to wordpress theme8 PSD to Wordpress Conversion Instructions" width="202" height="136" /></a></code></p>
<p>Also create an <strong>images </strong>folder in the same folder. This will hold our images for the theme.</p>
<p>Now that we have our folder, let’s create the files we need in the folder. We will create the following files:</p>
<ul>
<li>index.php</li>
<li>sidebar.php</li>
<li>header.php</li>
<li>footer.php</li>
<li>style.css</li>
<li>functions.php</li>
</ul>
<p>Now that we have our folders and files created, let’s slice up our psd file to create the necessary images.</p>
<h3>Slicing up Your PSD File</h3>
<p>For this theme, we only need to create one image &#8211; the header image. To do this we will select the layer in our psd file that is our header image. You should also hide any layers that are above the header layer to prevent them from being copied.</p>
<p><a href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/psd_to_wordpress_theme9/" rel="attachment wp-att-910"><img class="aligncenter size-full wp-image-910" title="psd_to_wordpress_theme9" src="http://blogcraving.com/wp-content/uploads/2012/01/psd_to_wordpress_theme9.png" alt="psd to wordpress theme9 PSD to Wordpress Conversion Instructions" width="447" height="254" /></a></p>
<p>Now we simply copy this layer and paste it into a new image.</p>
<p><a href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/psd_to_wordpress_theme10/" rel="attachment wp-att-911"><img class="aligncenter size-full wp-image-911" title="psd_to_wordpress_theme10" src="http://blogcraving.com/wp-content/uploads/2012/01/psd_to_wordpress_theme10.png" alt="psd to wordpress theme10 PSD to Wordpress Conversion Instructions" width="461" height="260" /></a></p>
<p>Review the dimensions to ensure they are correct and if they are then save the file as headerbg.jpg. You are now ready to start creating your theme.</p>
<p><strong>CSS Layout</strong></p>
<p>The layout of a theme is done using CSS divs. The divs define the various sections and how and where they are placed. Additionally our style.css will further define the look based on these divs.</p>
<p>Our theme will be laid out as follows.</p>
<p><a href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/psd_to_wordpress_theme11/" rel="attachment wp-att-912"><img class="aligncenter size-full wp-image-912" title="psd_to_wordpress_theme11" src="http://blogcraving.com/wp-content/uploads/2012/01/psd_to_wordpress_theme11.png" alt="psd to wordpress theme11 PSD to Wordpress Conversion Instructions" width="552" height="413" /></a></p>
<p>Furthermore, we will encase the entire page in two wrapper divs called wrapper and wrapper 2. Let’s start laying out the theme by starting on the template files.</p>
<p><strong>Template Pages</strong></p>
<p>Our layout for our divs will be as follows:</p>
<p style="padding-left: 30px;"><code>&lt;div id="wrapper"&gt;</code></p>
<p style="padding-left: 30px;">&lt;div id=&#8221;wrapper2&#8243;&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;superheader&#8221;&gt;&lt;/div&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;header&#8221;&gt;&lt;/div&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;tabs&#8221;&gt;&lt;/div&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;content&#8221;&gt;&lt;/div&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;sidebar&#8221;&gt;&lt;/div&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;footer&#8221;&gt;&lt;/div&gt;</p>
<p style="padding-left: 30px;">&lt;/div&gt;&lt;/div&gt;</p>
<p>There will be other divs in the theme, but these are the major ones and translate directly from our design. Let’s get started at the top with the header template.</p>
<p><strong>Header.php</strong></p>
<p>The header.php template contains our logo, site name, slogan, and in this case the menus. Open your header.php file and let’s get started.</p>
<p>You should have a blank page when you open the file. WordPress templates all work together like the pieces of a puzzle to build a complete webpage. Because of this, certain tags live in different templates. Every web page requires certain tags to render in the browser. These tags are:</p>
<ul>
<li>html</li>
<li>head</li>
<li>body</li>
</ul>
<p>The header.php file will have the opening html tag, the head tags, and the opening body tag as well. We will close the html and body tags in a different template.</p>
<p>The first thing we should do is set up our tags and CSS divs as follows:</p>
<p style="padding-left: 30px;"><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</code></p>
<p style="padding-left: 30px;">&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;</p>
<p style="padding-left: 30px;">&lt;head&gt;</p>
<p style="padding-left: 30px;">&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=utf-8&#8243; /&gt;</p>
<p style="padding-left: 30px;">&lt;title&gt; &lt;/title&gt;</p>
<p style="padding-left: 30px;">&lt;/head&gt;</p>
<p style="padding-left: 30px;">&lt;body&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;wrapper&#8221;&gt;&lt;div id=&#8221;wrapper2&#8243;&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;superheader&#8221;&gt;&lt;/div&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;header&#8221;&gt;&lt;/div&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;tabs&#8221;&gt;</p>
<p style="padding-left: 30px;">&lt;ul&gt;&lt;/ul&gt;</p>
<p style="padding-left: 30px;">&lt;/div&gt;</p>
<p>We have now created our basic header and inserted our HTML tags and CSS tags. Note that we did not close the Wrapper tags, as we will do this in the footer.php template. We have now lain out or page, but we have not put any WordPress specific data in yet. There are several items we need to add to the page including:</p>
<ul>
<li>page title code</li>
<li>blog description code</li>
<li>blog title code</li>
<li>menu code</li>
<li>the css link</li>
</ul>
<p>We need to add the following lines of code  to our page:</p>
<ul>
<li>&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;&lt;?php bloginfo(&#8216;stylesheet_url&#8217;); ?&gt;&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&gt;</li>
<li>&lt;?php wp_title(&#8216;&amp;laquo;&#8217;, true, &#8216;right&#8217;); ?&gt; &lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</li>
<li>&lt;a href=&#8221;&lt;?php bloginfo(&#8216;url&#8217;); ?&gt;/&#8221;&gt;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;/a&gt;</li>
<li>&lt;?php bloginfo(&#8216;description&#8217;); ?&gt;</li>
<li>&lt;a href=&#8221;&lt;?php bloginfo(&#8216;url&#8217;); ?&gt;&#8221;&gt;Home&lt;/a&gt;  &lt;?php wp_list_pages(&#8216;title_li=&amp;depth=1&#8242;); ?&gt;           &lt;/ul&gt;</li>
</ul>
<p>We add it in the following manner:</p>
<p style="padding-left: 30px;"><code>&lt;title&gt;<strong>&lt;?php wp_title('&amp;laquo;', true, 'right'); ?&gt; &lt;?php bloginfo('name'); ?&gt;</strong>&lt;/title&gt;</code></p>
<p style="padding-left: 30px;"><strong>&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;&lt;?php bloginfo(&#8216;stylesheet_url&#8217;); ?&gt;&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&gt;</strong></p>
<p>This creates the title text in the top of our browsers and links the CSS sheet to the page. To set the blog title and description to display in the header we add:</p>
<p style="padding-left: 30px;">&lt;div&gt;</p>
<p style="padding-left: 30px;"><code><strong>&lt;h1&gt;&lt;a href="&lt;?php bloginfo('url'); ?&gt;/"&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;&lt;/h1&gt;&lt;br&gt;</strong><br />
</code><br />
<strong>&lt;?php bloginfo(&#8216;description&#8217;); ?&gt; </strong></p>
<p style="padding-left: 30px;">&lt;ul&gt;</p>
<p>Finally, we add the menu items as follows:</p>
<p style="padding-left: 30px;"><code>&lt;ul&gt;</code></p>
<p style="padding-left: 30px;"><strong>&lt;li&gt;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;siteurl&#8217;); ?&gt;/&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;</strong></p>
<p style="padding-left: 30px;"><strong> &lt;?php wp_list_pages(&#8216;title_li=&amp;sort_column=menu_order&amp;depth=1&#8242;); ?&gt; </strong></p>
<p style="padding-left: 30px;">&lt;/ul&gt;</p>
<p>The first item creates a <strong>Home </strong>link and the second lists the pages within the WordPress database.</p>
<p>Finally, we are left with the following header.php template:</p>
<p style="padding-left: 30px;"><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</code></p>
<p style="padding-left: 30px;">&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221; &lt;?php language_attributes(); ?&gt;&gt;</p>
<p style="padding-left: 30px;">&lt;head profile=&#8221;http://gmpg.org/xfn/11&#8243;&gt;</p>
<p style="padding-left: 30px;">&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;&lt;?php bloginfo(&#8216;html_type&#8217;); ?&gt;; charset=&lt;?php bloginfo(&#8216;charset&#8217;); ?&gt;&#8221; /&gt;</p>
<p style="padding-left: 30px;">&lt;title&gt;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;  &lt;?php wp_title(); ?&gt;&lt;/title&gt;</p>
<p style="padding-left: 30px;">&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;&lt;?php bloginfo(&#8216;template_directory&#8217;); ?&gt;/style.css&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&gt;</p>
<p style="padding-left: 30px;">&lt;/head&gt;</p>
<p style="padding-left: 30px;">&lt;body&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;wrapper&#8221;&gt;&lt;div id=&#8221;wrapper2&#8243;&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;superheader&#8221;&gt;&lt;/div&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;header&#8221;&gt;</p>
<p style="padding-left: 30px;">&lt;h3&gt;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;home&#8217;); ?&gt;/&#8221;&gt;&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;&lt;/a&gt;&lt;/h3&gt;</p>
<p style="padding-left: 30px;">&lt;h2&gt;&lt;?php bloginfo(&#8216;description&#8217;); ?&gt;&lt;/h2&gt;&lt;/div&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;tabs&#8221;&gt;</p>
<p style="padding-left: 30px;">&lt;ul&gt;</p>
<p style="padding-left: 30px;">&lt;li&gt;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;siteurl&#8217;); ?&gt;/&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;</p>
<p style="padding-left: 30px;">&lt;?php</p>
<p style="padding-left: 30px;">wp_list_pages(&#8216;title_li=&amp;sort_column=menu_order&amp;depth=1&#8242;); ?&gt;</p>
<p style="padding-left: 30px;">&lt;/ul&gt;</p>
<p style="padding-left: 30px;">&lt;/div&gt;</p>
<p>Now that we have our header.php file lets create our footer.php file.</p>
<p><strong>Footer.php</strong></p>
<p>The footer.php file contains the information for the footer and is used to clean up tags for other templates. In our case we have an open div tag from the page div in the header and the body and html tags that need to be closed. As usual, we will create a div and then add our content.</p>
<p>Our footer.php will look like this:</p>
<p style="padding-left: 30px;"><code>&lt;div id="footer"&gt;</code></p>
<p style="padding-left: 30px;">&lt;p&gt;</p>
<p style="padding-left: 30px;">&lt;?php bloginfo(&#8216;name&#8217;); ?&gt; is proudly powered by</p>
<p style="padding-left: 30px;">&lt;a href=&#8221;http://wordpress.org/&#8221;&gt;WordPress&lt;/a&gt;</p>
<p style="padding-left: 30px;">&lt;br /&gt;&lt;a href=&#8221;&lt;?php bloginfo(&#8216;rss2_url&#8217;); ?&gt;&#8221;&gt;Entries (RSS)&lt;/a&gt;</p>
<p style="padding-left: 30px;">and &lt;a href=&#8221;&lt;?php bloginfo(&#8216;comments_rss2_url&#8217;); ?&gt;&#8221;&gt;Comments (RSS)&lt;/a&gt;.</p>
<p style="padding-left: 30px;">&lt;/p&gt;</p>
<p style="padding-left: 30px;">&lt;/div&gt;&lt;/div&gt;</p>
<p style="padding-left: 30px;">&lt;/body&gt;&lt;/html&gt;</p>
<p>Let’s examine each piece of this. The <strong>&lt;div id=&#8221;footer&#8221;&gt;</strong>starts the div for the footer. The <strong>&lt;p&gt; </strong>creates a paragraph break in the top of the footer and the <strong>&lt;/p&gt;</strong> tag closes that tag. The next tag <strong>(&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</strong> )should look familiar,  it displays the title of the blog. After the link to WordPress you will see two links that allow visitors to subscribe to rss feeds of the blog. Finally, you see our closing tags, one for the footer div, one for the page div and then the html and body tags.</p>
<p>Now let’s look at the sidebar.php template.</p>
<p><strong>Sidebar.php</strong></p>
<p>The sidebar.php template controls the items in our sidebar. When designing a sidebar, you can either create a static bar that you put the WordPress items into such as categories, calendar, etc, or you can build a widget ready sidebar that lets you set the items in the admin panel.</p>
<p>The sidebar is an unordered list of items contained in a CSS div. The first thing we want to do is add the div to the page so open your sidebar.php and insert the following code:</p>
<p style="padding-left: 30px;"><code>&lt;div class=”sidebar”&gt;</code></p>
<p style="padding-left: 30px;">&lt;/div&gt;</p>
<p>If you want a widget ready sidebar, add the following code to the sidebar between the div tags:</p>
<p style="padding-left: 30px;"><code>&lt;ul&gt;</code></p>
<p style="padding-left: 30px;">&lt;?php /* Widgetized sidebar, if you have the plugin installed. */</p>
<p style="padding-left: 30px;">if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar() ) : ?&gt;</p>
<p style="padding-left: 30px;">&lt;?php endif; ?&gt;&lt;/ul&gt;</p>
<p>If you do not want to add any static items then you are done. However, for those that want a static sidebar you can add a list of blog categories by adding the following code:</p>
<p style="padding-left: 30px;"><code>&lt;ul&gt;</code></p>
<p style="padding-left: 30px;">&lt;li&gt;&lt;h2&gt;&lt;?php _e(’Categories’); ?&gt;<strong> </strong>&lt;/h2&gt;</p>
<p style="padding-left: 30px;">&lt;ul&gt; &lt;?php wp_list_cats(); ?&gt;</p>
<p style="padding-left: 30px;">&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;</p>
<p>There are many other items available, check the WordPress site for more info. Our final sidebar should look like:</p>
<p style="padding-left: 30px;"><code>&lt;div class=”sidebar”&gt;</code></p>
<p style="padding-left: 30px;">&lt;ul&gt;</p>
<p style="padding-left: 30px;">&lt;?php /* Widgetized sidebar, if you have the plugin installed. */</p>
<p style="padding-left: 30px;">if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar() ) : ?&gt;</p>
<p style="padding-left: 30px;">&lt;?php endif; ?&gt; &lt;/ul&gt; &lt;/div&gt;</p>
<p>That is it; of course, you can put anything you want in here. Let’s look at our last template, index.php that will pull together all these templates.</p>
<p><strong>Index.php</strong></p>
<p>The index.php pulls the other templates together to create the basic page. To begin we will create the calls to our other pages as follows:</p>
<p style="padding-left: 30px;"><code>&lt;?php get_header(); ?&gt;</code></p>
<p style="padding-left: 30px;">&lt;?php get_sidebar(); ?&gt;</p>
<p style="padding-left: 30px;">&lt;?php get_footer(); ?&gt;</p>
<p>This calls the header.php, sidebar.php, and footer.php page. If you just loaded this, you would get a page with no content, so we need to add the content and necessary divs.</p>
<p>Let’s start by adding the content and main divs right below &lt;?php get_header(); ?&gt; as follows:</p>
<p style="padding-left: 30px;"><code>&lt;?php get_header(); ?&gt;</code></p>
<p style="padding-left: 30px;">&lt;div id=&#8221;content&#8221;&gt;</p>
<p style="padding-left: 30px;">&lt;div id=&#8221;main&#8221;&gt;</p>
<p style="padding-left: 30px;">&lt;/div&gt;&lt;/div&gt;</p>
<p>Now that we have our divs setup we can begin adding the code to get the data from the database.  You will most likely want to list your posts on the main page. To do this we add code that will retrieve the posts and lists them as follows:</p>
<p style="padding-left: 30px;"><code>&lt;div id="main"&gt;</code></p>
<p style="padding-left: 30px;">&lt;?php if(have_posts()) : ?&gt;&lt;?php while(have_posts()) : the_post(); ?&gt;</p>
<p style="padding-left: 30px;">&lt;?php endwhile; ?&gt;</p>
<p style="padding-left: 30px;">&lt;?php endif; ?&gt;</p>
<p style="padding-left: 30px;">&lt;/div&gt;</p>
<p>Your theme is now ready to display the posts. We are only left with one template, the functions.php template.</p>
<p><strong>Functions.php</strong></p>
<p>The functions.php file can be used in many ways. In our case, we will use it to control the look of our widgets in our sidebar. Open your functions.php file and let’s get started.  Enter the following code into your functions.php template:</p>
<p style="padding-left: 30px;"><code>&lt;?php</code></p>
<p style="padding-left: 30px;">if ( function_exists(&#8216;register_sidebar&#8217;) )</p>
<p style="padding-left: 30px;">register_sidebar(array(</p>
<p style="padding-left: 30px;">&#8216;before_widget&#8217; =&gt; &#8216;&lt;li&gt;&#8217;,</p>
<p style="padding-left: 30px;">&#8216;after_widget&#8217; =&gt; &#8216;&lt;/li&gt;&#8217;,</p>
<p style="padding-left: 30px;">&#8216;before_title&#8217; =&gt; &#8221;,</p>
<p style="padding-left: 30px;">&#8216;after_title&#8217; =&gt; &#8221;,</p>
<p style="padding-left: 30px;">));</p>
<p style="padding-left: 30px;">?&gt;</p>
<p>As you can see this checks to see if there is a widget in the sidebar and then inserts code before and after the widget to control the look of the widget.</p>
<p>We now have a set of templates that will produce a theme. To set the look of the theme we need to create a style.css file.</p>
<p><strong>Style.css</strong></p>
<p>The style.css file contains information about our theme and defines the look of our theme.  We start by opening our style.css file and entering the information about our theme at the top. We need to enclose our information in comment tags. CSS comment tags look like this:<br />
<code></code></p>
<ul>
<li>/*  (open comment)</li>
<li>*/  (Close Comment)</li>
</ul>
<p style="padding-left: 30px;">We need to include all the required info. We built our details as follows:</p>
<p style="padding-left: 30px;"><code>/*</code></p>
<p style="padding-left: 30px;">Theme Name: World</p>
<p style="padding-left: 30px;">Theme URI: http://www.Yoursite.com</p>
<p style="padding-left: 30px;">Description: My first theme</p>
<p style="padding-left: 30px;">Version: 1.0</p>
<p style="padding-left: 30px;">Author: You</p>
<p style="padding-left: 30px;">Author URL: http://www.yoursite.com</p>
<p style="padding-left: 30px;">*/</p>
<p>Now that we completed the comments, we need to create classes for each of the divs we defined in addition to the body div. We will create the following classes.</p>
<ul>
<li>body</li>
<li>wrapper</li>
<li>wrapper2</li>
<li>superheader</li>
<li>header</li>
<li>content</li>
<li>sidebar</li>
<li>footer</li>
</ul>
<p>Let’s look at each one individually and what they do. We will keep it simple and just define the body portion of our pages. The body styles affect the entire page. We will define several elements including:</p>
<ul>
<li>The background color</li>
<li>The font used by our pages</li>
<li>The font size</li>
</ul>
<p>To do this we will enter the following into our style.css page.</p>
<p style="padding-left: 30px;"><code><code><strong>body {</strong></code></code></p>
<p style="padding-left: 30px;"><strong> margin: 0;</strong></p>
<p style="padding-left: 30px;"><strong> padding: 0;</strong></p>
<p style="padding-left: 30px;"><strong> color: #333;</strong></p>
<p style="padding-left: 30px;"><strong> text-align:center;</strong></p>
<p style="padding-left: 30px;"><strong> font-family: Verdana, Arial, Helvetica, sans-serif;</strong></p>
<p style="padding-left: 30px;"><strong> font-size: 100.1%;</strong></p>
<p style="padding-left: 30px;"><strong> background:#0099FF;</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p><strong></strong>Let’s examine each item separately.</p>
<ul>
<li><strong>body{ &#8211; </strong>This opens the style class and defines which tags are effected in the pages.</li>
<li><strong>Margin: - </strong> Defines the margins around the page. A 0 margin will have no margin.</li>
<li><strong>padding: &#8211; </strong>Padding is like a margin and setting it to 0 will remove it completely.<strong> </strong></li>
<li><strong>color: &#8211; </strong>This tag defines the color of the font.</li>
<li><strong>font-family: </strong> &#8211; This defines the font used for the  class. Not every font can be used and web pages use specific fonts. Refer to CSS standards for a complete list. In this case, we chose the <strong>Verdana, Arial, Helvetica, sans-serif</strong> font.</li>
<li><strong>font-size: </strong> &#8211; This sets the size of the basic font.</li>
<li></li>
<li><strong>background:</strong> – sets the color of the background on the webpage.  We used <strong>0099FF</strong> which is the hex representation of our color. To get the hex color you can use photoshop.</li>
</ul>
<p>You might have noticed a semicolon at the end of each value. This is used to end the line and is required.</p>
<p>We now can define our two wrapper classes as follows.</p>
<p style="padding-left: 30px;"><code><strong>#wrapper{</strong></code></p>
<p style="padding-left: 30px;"><strong>width: 980px;</strong></p>
<p style="padding-left: 30px;"><strong>margin: 0px auto;</strong></p>
<p style="padding-left: 30px;"><strong>padding: 0px;</strong></p>
<p style="padding-left: 30px;"><strong>text-align:left;</strong></p>
<p style="padding-left: 30px;"><strong>font-size: 78%;</strong></p>
<p style="padding-left: 30px;"><strong>line-height:18px;</strong></p>
<p style="padding-left: 30px;"><strong>background: #fff;</strong></p>
<p style="padding-left: 30px;"><strong>border-left: 2px solid #fff;</strong></p>
<p style="padding-left: 30px;"><strong>border-right: 2px solid #fff;</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p style="padding-left: 30px;"><strong>#wrapper2{</strong></p>
<p style="padding-left: 30px;"><strong>background: #fff;</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p>Here we have used the <strong>width</strong> tag to create the width of our theme and it matches our design width. The <strong>text-align</strong> tag sets the text alignment in the div, and finally we create a border around the div. with the <strong>border-right and border-left</strong> tags. The wrapper two class only sets the background color to white which is what we use for our sidebar and content.</p>
<p>Now that we have the <strong>global </strong>tags set, let’s address our header. Our header section will control the look of the items in our header and will include several items such as:</p>
<ul>
<li>the header image,</li>
<li>header text, and</li>
<li>the menu text.</li>
</ul>
<p>We will do this in the following manner and step through this one class at a time.</p>
<p style="padding-left: 30px;"><code><strong>#superheader{</strong></code></p>
<p style="padding-left: 30px;"><strong>padding: 0;</strong></p>
<p style="padding-left: 30px;"><strong>margin: 0;</strong></p>
<p style="padding-left: 30px;"><strong>height: 13px;</strong></p>
<p style="padding-left: 30px;"><strong>background-color:#0569ac;</strong></p>
<p style="padding-left: 30px;"><strong>} </strong></p>
<p style="padding-left: 30px;"><strong>#header{</strong></p>
<p style="padding-left: 30px;"><strong>padding: 0  0 0px 0;</strong></p>
<p style="padding-left: 30px;"><strong>height: 175px;</strong></p>
<p style="padding-left: 30px;"><strong>margin: 0 0 0px 0;</strong></p>
<p style="padding-left: 30px;"><strong>border-bottom:2px solid #fff;</strong></p>
<p style="padding-left: 30px;"><strong>background:#fff;</strong></p>
<p style="padding-left: 30px;"><strong>background-image:url(images/headerbg.jpg);</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p>The <strong>superheader</strong> class is used to create that band at the top of the page.  We simply set the <strong>margins,</strong> <strong>height, and color.</strong></p>
<p>The <strong>header </strong>class defines the overall style of the header div. In this case, we are setting the <strong>background image, borders, margins, and height</strong>. You can see we used the sliced header image we created earlier.</p>
<p>The menu is controlled by the <strong>tab</strong> class and controls how the menu looks and functions. Because a WordPress menu functions as an unordered list, we set the list tags for the menu tags as well. An unordered list in html will use the tags <strong>ul</strong> and <strong>li, w</strong>ith <strong>ul </strong>defining a list and <strong>li</strong> a list item. Let’s start by looking at the <strong>menu</strong> class.</p>
<p style="padding-left: 30px;"><code><strong>#tabs{</strong></code></p>
<p style="padding-left: 30px;"><strong>padding: 0;</strong></p>
<p style="padding-left: 30px;"><strong>background:black;</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p style="padding-left: 30px;">First, we define the background color of the menu and set the padding to 0. Next, we define the look of the ul tags.</p>
<p style="padding-left: 30px;"><code><strong>#tabs ul{</strong></code></p>
<p style="padding-left: 30px;"><strong>margin: 0;</strong></p>
<p style="padding-left: 30px;"><strong>padding:3px 0;</strong></p>
<p style="padding-left: 30px;"><strong>list-style-type:none;</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p>Finally, we  set the <strong>li</strong> tags.</p>
<p style="padding-left: 30px;"><strong>#tabs ul li{</strong></p>
<p style="padding-left: 30px;"><strong>margin: 10px 0 3px 15px;</strong></p>
<p style="padding-left: 30px;"><strong>padding: 6px 15px 6px 0px;</strong></p>
<p style="padding-left: 30px;"><strong>display:inline;</strong></p>
<p style="padding-left: 30px;"><strong>border-right: 2px solid #fff;</strong></p>
<p style="padding-left: 30px;"><strong>font-size: 90%;</strong></p>
<p style="padding-left: 30px;"><strong>font-family: Tahoma, Arial, sans-serif;</strong></p>
<p style="padding-left: 30px;"><strong>} </strong></p>
<p><strong>Display:inline</strong> makes the list display in a horizontal line as opposed to a vertical line.  Next we define how the links look in our menu. Since each item will be a link we will want to change the look form the default link style. Here we set the font color to white.</p>
<p style="padding-left: 30px;"><code><strong>#tabs ul li a{</strong></code></p>
<p style="padding-left: 30px;"><strong>color: white;</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p>The last step is to define the behavior of the text when we hover the mouse over it. Here we simply change the color.</p>
<p style="padding-left: 30px;"><code><strong>#tabs ul li a:hover{</strong></code></p>
<p style="padding-left: 30px;"><strong>color:#A1E7FD;</strong></p>
<p style="padding-left: 30px;"><strong> text-decoration:none;</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p>Next, we can create the style for our footer. We will define our footer style as follows.</p>
<p style="padding-left: 30px;"><code><strong>#footer {</strong></code></p>
<p style="padding-left: 30px;"><strong>clear: both;</strong></p>
<p style="padding-left: 30px;"><strong>margin: 0;</strong></p>
<p style="padding-left: 30px;"><strong>padding: 10px 16px 0 16px;</strong></p>
<p style="padding-left: 30px;"><strong>text-align: center;</strong></p>
<p style="padding-left: 30px;"><strong>font-size: 85%;</strong></p>
<p style="padding-left: 30px;"><strong>background: #fff;</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p>This class defines the footer class and sets the <strong>margins, padding, text alignment, font size, and background color</strong> for the class.</p>
<p>Now that we have the footer, let’s define the sidebar styles as follows.</p>
<p style="padding-left: 30px;"><code><strong>#sidebar {</strong></code></p>
<p style="padding-left: 30px;"><strong>padding: 0;</strong></p>
<p style="padding-left: 30px;"><strong>margin: 0px 0px 0px 540px;</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p>That is it for the sidebar for now. Next, we will set the style for the main content of the pages as follows.</p>
<p style="padding-left: 30px;"><code><strong>#content{</strong></code></p>
<p style="padding-left: 30px;"><strong>clear:both;</strong></p>
<p style="padding-left: 30px;"><strong>padding: 0;</strong></p>
<p style="padding-left: 30px;"><strong>margin: 15px 10px;</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p>This will define the content container’s style. We set the <strong>margins and padding</strong> for the class<strong>. </strong></p>
<p style="padding-left: 30px;"><code><strong>#main {</strong></code></p>
<p style="padding-left: 30px;"><strong>width: 530px; </strong></p>
<p style="padding-left: 30px;"><strong>float:left;</strong></p>
<p style="padding-left: 30px;"><strong>margin: 0;</strong></p>
<p style="padding-left: 30px;"><strong>padding: 0 0 10px 0px;</strong></p>
<p style="padding-left: 30px;"><strong>overflow:hidden;</strong></p>
<p style="padding-left: 30px;"><strong>}</strong></p>
<p>Here we set the <strong>main</strong> div’s class by setting the <strong>width, placement, margins, padding, and the overflow </strong>properties.</p>
<p>That is it, we are ready to upload the theme and test it.</p>
<h3>Putting it all together</h3>
<p>If you upload this to your server and browse to the blog you should see something like this.</p>
<p><a href="http://blogcraving.com/free-psd-wordpress-conversion-tutorial/psd_to_wordpress_theme12/" rel="attachment wp-att-919"><img class="aligncenter size-full wp-image-919" title="psd_to_wordpress_theme12" src="http://blogcraving.com/wp-content/uploads/2012/01/psd_to_wordpress_theme12.png" alt="psd to wordpress theme12 PSD to Wordpress Conversion Instructions" width="584" height="274" /></a></p>
<h3>Conclusion</h3>
<p>We have created a simple WordPress theme. There are many other things you can do with WordPress themes and there are many great tutorials available to help you. There is no limit to what you can do with a WordPress theme as long as you follow the basic principles contained within this document. If you want to do more advanced theme building check out the WordPress developer site at <a href="http://www.wordpress.com">www.wordpress.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/free-psd-wordpress-conversion-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jetpack for WordPress</title>
		<link>http://blogcraving.com/jetpack-wordpress-wordpresscom/</link>
		<comments>http://blogcraving.com/jetpack-wordpress-wordpresscom/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 04:29:43 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=872</guid>
		<description><![CDATA[The new suite of plugins called Jetpack (by WordPress.com) offers an all-inclusive set of features for self-hosted blogs. One of the things I am asked most by friends and strangers: That plugins do I need for my WordPress blog? I get this question most often from people who have recently moved their blogs over from WordPress.com to [...]]]></description>
			<content:encoded><![CDATA[<p>The new suite of plugins called <a title="Jetpack" href="http://jetpack.me/" target="_blank">Jetpack (by WordPress.com)</a> offers an all-inclusive set of features for self-hosted blogs.</p>
<p><a href="http://blogcraving.com/jetpack-wordpress-wordpresscom/jetpack_wordpress/" rel="attachment wp-att-877"><img class="alignright size-medium wp-image-877" title="Jetpack WordPress" src="http://blogcraving.com/wp-content/uploads/2012/01/jetpack_wordpress-240x154.png" alt="jetpack wordpress 240x154 Jetpack for Wordpress" width="240" height="154" /></a>One of the things I am asked most by friends and strangers:</p>
<blockquote><p>That plugins do I need for my WordPress blog?</p></blockquote>
<p>I get this question most often from people who have recently moved their blogs over from WordPress.com to the self-hosted WordPress.org version.</p>
<p>The core of both platforms is nearly identical with the exception that the self-hosted version requires you to install all of your own plugins.  Most, but not all, of the features available in WordPress.com are available as one-off plugins in the open marketplace.</p>
<p>Unfortunately, you are responsible for updates and anything that goes wrong if they experience bugs.<span id="more-872"></span></p>
<p>I&#8217;ve used WordPress for about 7 years, and in all that time I have always wondered why certain plugins do not just come with the core WordPress.org download.  I know the reason is that WordPress.org is an open source program that does not want to play favorites with certain developers.  It makes some sense.</p>
<p>Finally, <a href="http://automattic.com/">Automattic</a> released a solution under the brand name, <a href="http://jetpack.me/" target="_blank">Jetpack</a>.</p>
<p>Jetpack includes:</p>
<ul>
<li><strong>Subscriptions</strong> &#8211; Let users subscribe via email.</li>
<li><strong>Image &amp; RSS Links Widgets</strong> &#8211; Add them to your sidebars.</li>
<li><strong>Gravatar Hovercards</strong> &#8211; Enhance your Gravatars by allowing users to hover over a Gravatar to see more information about that user.</li>
<li><strong>WordPress.com Stats</strong> &#8211; The good old stats program you are used to from WordPress.com.</li>
<li><strong>Twitter Widget</strong> &#8211; Tweet Tweet</li>
<li><strong>Shortcodes</strong> &#8211; Add embeddable content, like video players, to your posts with easy shortcodes.</li>
<li><strong>Shortlinks</strong> &#8211; Utilize the WP.me link shortener.</li>
<li><strong>Sharedaddy</strong> &#8211; Add social media sharing buttons to your posts.</li>
<li><strong>After the Deadline</strong> &#8211; Hands down the best spelling and grammar checker for WordPress.</li>
<li><strong>Vaultpress</strong> &#8211; A premium (paid) service for backing up your entire blog.</li>
<li><strong>Beautiful Math</strong> &#8211; Allows you to add geeky math equations in posts.</li>
<li><strong>Enhance Distribution</strong> &#8211; Ping your content out to all the search engines and content aggregators.</li>
</ul>
<p>There is a pretty significant benefit of automatic updates.  The group of plugins will automatically update as new features and bugs are fixed.  Jetpack also claims that new features will automatically be included as well.</p>
<p>I&#8217;m also glad to see that Automattic is starting to take advantage of their name&#8230;and making things Automatic.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/jetpack-wordpress-wordpresscom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The First Steps in Turning Your Hobby Blog into a Business</title>
		<link>http://blogcraving.com/turning-hobby-blog-business/</link>
		<comments>http://blogcraving.com/turning-hobby-blog-business/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 06:01:10 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[start up]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=688</guid>
		<description><![CDATA[Inevitably, most hobby or amateur bloggers wake up one day and realize that they could turn their hobby blog into a business.  Yeah, you might not be able to quit your day job, but you might be able to earn yourself enough money to take a vacation or by yourself a new iPad. Mr. Hobby [...]]]></description>
			<content:encoded><![CDATA[<p>Inevitably, most hobby or amateur bloggers wake up one day and realize that they could turn their hobby blog into a business.  Yeah, you might not be able to quit your day job, but you might be able to earn yourself enough money to take a vacation or by yourself a <a href="http://www.apple.com/ipad/">new iPad</a>.</p>
<p>Mr. Hobby blogger does some quick Google research and realizes all they have to do is throw some <a href="http://google.com/adsense">Adsense</a> code on their blog template, and the checks will start rolling in!</p>
<p>Fail.</p>
<p>Do not pass go.  Do not collect new iPad.</p>
<p>What the heck happened?  Mr. Hobby blogger actually has a pretty sizable following for his <a href="http://www.lego.com">site all about Legos</a>.  Sure, it is a hyper specific niche, but there&#8217;s an audience for this stuff.  He has even received invitations to attend major toy conventions.</p>
<p>Mr. Hobby blogger has actually talked to marketing folks from the <a href="http://www.lego.com/eng/info/default.asp?page=group">Lego Group Inc.</a> about his site, yet they do not seem interested in sponsoring his website. What&#8217;s the problem here?</p>
<p>No one is taking you seriously because your site does not look like a serious business.</p>
<p>Yes, we&#8217;re talking about kids toys here so of course it does not have to look like the Dow Jones homepage.  But here is what&#8217;s making you look amateur:</p>
<ul>
<li>Your website URL is:  http://legofreak.blogspot.com.</li>
<li>Your email address is:  blockhead433@yahoo.com.</li>
<li>Your &#8220;About&#8221; page talks about where you grew up and has a picture of your dog on it.</li>
<li>Your blog template is the same template used by 2.4 million other bloggers.</li>
<li>You are secretly obsessed with funny animated gif files.</li>
<li>You steal photos from other websites.  You loooove Google image search.</li>
<li>Privacy policy?  What&#8217;s a privacy policy?</li>
<li>You don&#8217;t have or use a web analytics program.</li>
</ul>
<p>There are probably a few more issues, but these are the most common.</p>
<p>You&#8217;re content is probably some of the best Lego related content on the Internet.  Unfortunately, it is hard for legitimate advertisers to take your site seriously.</p>
<p>You get an A+ for content, and a D+ for execution.</p>
<h3>Here is your homework assignment:</h3>
<p>Run out and register a Lego related domain name.  Maybe don&#8217;t use the word Lego in the domain since it is a registered trademark, but pick something in the &#8220;building block&#8221; arena.</p>
<p>Once you&#8217;ve got that domain name locked down, set up a real email address.  John@buildingblocks.com would be lovely.</p>
<p>Write out a better About page.  Talk about the site and the type of content you hope to deliver to your audience.  If you happen to know some data about your readers, here&#8217;s your chance to highlight it.  Think of this as a soft sell for why an advertiser might be interested in doing business with you.</p>
<p>Move your blog to a self hosted system such as <a href="http://wordpress.org" target="_blank">WordPress.org</a>.  There&#8217;s plenty of cheap (like $6 per month) hosting out there.  Sign yourself up, and get WordPress installed.  It is not hard and you can get it all done in under an hour.</p>
<p>Pick a better template that fits your blog&#8217;s theme.  If you are really committed to this, hire someone to build a custom template for you.  You should be able to get this done for a less than a couple hundred bucks for something basic, but classy.</p>
<p>Stop stealing photos.  Yes, it is easy to do a Google image search and rip pics from someone else.  Unfortunately, that&#8217;s kind of illegal.  However, hope is not lost!  Solicit photos from your readers.  I&#8217;m sure there are Lego fans out there that would love to share their creations with you.</p>
<p>If you find pictures on another site, ask the owner if you can use them.  Often times, they&#8217;d be happy to let you use a photo in exchange for a link back to their site from the post.</p>
<p>Google what a <a href="http://www.google.com/#hl=en&amp;source=hp&amp;q=how+to+make+a+privacy+policy&amp;aq=0&amp;aqi=g1&amp;aql=&amp;oq=how+to+make+a+privacy+p&amp;fp=ab529a0fe761a36d">&#8220;Privacy Policy&#8221;</a> is.  There are stock templates out there.  Get your hands on one and get it up on your site.  Many ad networks and direct advertisers require that you have a privacy policy on your site.  Plus, it make it look like you know what you are doing with this whole &#8220;business&#8221; thing.</p>
<p>If you haven&#8217;t already, sign up for Google Analytics.  Run, don&#8217;t walk.  Sign up right away and start measuring your traffic.  Your advertisers are going to want to know how much traffic your site gets.  This is how you will know.</p>
<p>Get out there and make us proud.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/turning-hobby-blog-business/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Your Blog Traffic Blueprint – Part Two</title>
		<link>http://blogcraving.com/your-blog-traffic-blueprint-pt2/</link>
		<comments>http://blogcraving.com/your-blog-traffic-blueprint-pt2/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 05:16:33 +0000</pubDate>
		<dc:creator>Ellen</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[Site Traffic]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog traffic]]></category>
		<category><![CDATA[traffic generation]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=818</guid>
		<description><![CDATA[In the last post I explained a number of different ways you could get your blog optimized for traffic and then methods in which you could drive traffic through the use of backlinking.  The good thing about a lot of backlinking methods is that not only do they help your blog to be recognized as [...]]]></description>
			<content:encoded><![CDATA[<p>In <a title="Your Blog Traffic Blueprint – Part One" href="http://blogcraving.com/your-blog-traffic-blueprint-pt1/">the last post</a> I explained a number of different ways you could get your blog optimized for traffic and then methods in which you could drive traffic through the use of backlinking.  The good thing about a lot of backlinking methods is that not only do they help your blog to be recognized as important by search engines like Google; many of the methods drive traffic directly to your blog because of the insightful content you are providing.</p>
<p>In this post I am going to lay out a blueprint for you that you can follow step-by-step and then in later posts I will give you more details on how to actually set up each of these methods to maximize their impact on your traffic stats.</p>
<ol>
<li>Do the preparation steps in the <a title="Your Blog Traffic Blueprint – Part One" href="http://blogcraving.com/your-blog-traffic-blueprint-pt1/">previous blog post</a>.</li>
<li>Write five articles related to your niche – this is not as hard as it seems – you can simply rewrite your blog posts to create unique articles.</li>
<li>Use Camtasia Free software and PowerPoint presentation slides to create videos out of your article content – don’t mind being in front of the camera?  Then use that, but you want to create five videos based on your five articles and you will need five PowerPoint presentation slide shows for traffic generation as well.</li>
<li>Create an audio file of all five of your articles.  If your article content is quite short just make one audio file including the information in all five articles.</li>
</ol>
<p>Okay so at this point you will have five articles, five videos, five PowerPoint presentation slide shows, and at least one audio file.  All of these files will contain backlinks to your site and if you can include a call to action (without sounding spammy) in the content as well all the better.  Now you have to get these out on the net.</p>
<h3>The Articles</h3>
<p>Your articles are going to provide a hub for the rest of your traffic efforts.  Firstly you want to submit them to Ezinearticles.com.  Unless you are a premium member this is going to take a few days for the articles to be approved.  You are also going to submit your articles to the following sites:</p>
<ul>
<li><a href="http://Goarticles.com" target="_blank">Goarticles.com</a></li>
<li><a href="http://SubmitYourArticles.com" target="_blank">SubmitYourArticles.com</a></li>
<li><a href="http://ArticleDashboard.com" target="_blank">ArticleDashboard.com</a></li>
<li><a href="http://ArticleDashboard.com" target="_blank">Freenichetopics.com</a></li>
</ul>
<p>But wait until your articles have been approved on <a href="http://ezinearticles.com" target="_blank">Ezinearticles.com</a> first – EZA does not like duplicate content.  Don’t forget to ping your article links (the actual link of the page your article is on) as well as Stumble it, Twitter it and put the link up on Facebook.</p>
<p>Next you want to find some graphics to go with your article content and then head over to <a href="http://squidoo.com" target="_blank">Squidoo.com</a> and set up five lenses using your article content and the pictures you have collected.  Each article will make an individual lens.  If you have not made a Squidoo Lens before then check out the help tutorials they have on their site which are very good or courses by people like Tiffany Dow or the PotPieGirl.  Again once you have your lenses finished then ping them and use your social media links to put the word out about them.</p>
<p>Well that should be enough to keep you going for the moment.  In the next post I will explain more things you can do with your articles and also where to post the other content that I had you create.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/your-blog-traffic-blueprint-pt2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your Blog Traffic Blueprint – Part One</title>
		<link>http://blogcraving.com/your-blog-traffic-blueprint-pt1/</link>
		<comments>http://blogcraving.com/your-blog-traffic-blueprint-pt1/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 16:30:38 +0000</pubDate>
		<dc:creator>Ellen</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[Site Traffic]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog traffic]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[traffic to your blog]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=816</guid>
		<description><![CDATA[Generating traffic to your blog is something a lot of bloggers have trouble with.  But if you use the traffic blueprint I have outlined below then you will have swarms of traffic hitting your site every time you write a new post. Setting the Groundwork Getting prepared for traffic to your site is something that [...]]]></description>
			<content:encoded><![CDATA[<p>Generating traffic to your blog is something a lot of bloggers have trouble with.  But if you use the traffic blueprint I have outlined below then you will have swarms of traffic hitting your site every time you write a new post.</p>
<h3>Setting the Groundwork</h3>
<p>Getting prepared for traffic to your site is something that you should be thinking off from the moment you install WordPress on your new domain.  Before you start generating traffic you want to make sure that you have installed all of the plug-ins outlined in our previous post here [Link to 5 Essential Plug-ins You Blog Must have].  To keep Google happy your site will need to have a Privacy Policy page, a Terms and Conditions Page and a Contact page at the very least.  You should also make sure that you have a minimum of three blog posts on your blog, with more scheduled or planned before you put this traffic plan into place.  Ideally you should aim for one new blog post for your blog daily for about a month, and then at least three times a week thereafter so that your blog always has good fresh content coming in.</p>
<h3>Setting Up Backlinks</h3>
<p>If you are not familiar with SEO then it is unlikely that you have come across the term “Backlinks” before but these are a vital part of your blogging success.  In a nutshell backlinks are links on other sites that point back to your blog, or a specific blog post.  The more backlinks your blog has the more valuable it is considered by Google and other search engines.  So you need to set up a system to start generating backlinks as quickly as you can.</p>
<p><strong>Warning:</strong> There are a lot of companies online that claim they can get you hundreds or even thousands of backlinks for the price of a cup of coffee – Do not use these methods.  They are considered spam and can get your blog banned from Google permanently if you use these “Black Hat” methods.</p>
<p>Your pinging will already be creating backlinks for you but you can go a lot further with this.   Just some of the methods you can use include</p>
<ul>
<li>Putting articles on article directory sites like Ezinearticles and GoArticles</li>
<li>Putting up videos on YouTube and other video sites (TubeMogul is good for this)</li>
<li>Creating audio files and placing them on sites like iTunes</li>
<li>Blog commenting on other blogs in your niche</li>
<li>Forum posting on relevant forums in your niche</li>
<li>Posting an ebook of your content on free ebook sites like Free-ebooks.net</li>
<li>Setting up related pages on Squidoo.com and HubPages</li>
<li>RSS feeds</li>
<li>Social Media sites like Twitter, Facebook and StumbleUpon</li>
</ul>
<p>Now before you go thinking that this could be a lot of work, remember that you can outsource a lot of these tasks and as we will show you in the next blog post – a lot of these ideas come from recycling and repackaging content you have already created.  See you on the next post.</p>
<h4 style="text-align: right;"><a title="Part Two" href="http://blogcraving.com/your-blog-traffic-blueprint-pt2/">Read Part Two</a></h4>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/your-blog-traffic-blueprint-pt1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 Copy Writing Skills for Bloggers</title>
		<link>http://blogcraving.com/6-copy-writing-skills-bloggers/</link>
		<comments>http://blogcraving.com/6-copy-writing-skills-bloggers/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 03:47:40 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[How to...]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=827</guid>
		<description><![CDATA[Every blogger blogging for marketing wants to improve his or her writing skills to make a huge impact on people reading their blogs. The skill to capture the reader is a priceless asset. The main trick is to present the idea to sell to the readers, without making them feel apprehensive or forced. Here are [...]]]></description>
			<content:encoded><![CDATA[<p>Every blogger blogging for marketing wants to improve his or her writing skills to make a huge impact on people reading their blogs. The skill to capture the reader is a priceless asset. The main trick is to present the idea to sell to the readers, without making them feel apprehensive or forced.</p>
<p>Here are 6 copywriting skills for bloggers to help them achieve their marketing goals without scaring the readers away.</p>
<p><strong>1. Know Your Product</strong>: There is the need for the blogger to has enough knowledge about the product he or she is promoting. Be sure that what all that advertisements about the product say is true. Knowledge about the product will make you feel confident about supporting the product while writing. The reader needs your assurance of the products being genuine.  After reading your blog they need to feel the need for what you have written about. Unless you sound convincing and enthusiastic yourself, they won’t be convinced either.</p>
<p><strong>2. Understand Your Targeted Audience:</strong> Naturally not everyone will be convinced about what you are promoting. There are a number of reasons for that. For example; the reader might not need what you are promoting, or may not have the finances for it. Age group also matters when it comes to relating with clients. The youth requires a different approach from adults and professionals. Therefore knowing your customer type helps in knowing what approach will work well. We do not want to drive away the customer, therefore try being persuasive rather than dictatorial.</p>
<p><strong>3. Outline the Benefits:</strong> Provide an insight to the benefits of buying what you’re selling. The audience needs to know what they will gain from the product. It has to work for the reader, therefore when you write, talk about the benefits. If you do not tell them what they will gain from the product they will lose interest and leave. The best approach is to highlight the benefits and make sure they are clear enough. Avoid using feathery words, be as simple and clear to understand as possible. The reader should be able to see the positive impact and how it will change their lives for the better.</p>
<p><strong>4. Create the Need:</strong> This is the main challenge with copywriting skills. The reader must be left with the need to act urgently. Offer a bonus gift or present for a limited time as an available opportunity to avail right now. They have to feel the need to decide immediately. You must understand that once the reader leaves your website without acting, they are lost. Therefore, you have to attract them and convince them to take the step. Offer them a thank you gift and capture their email address to be able to send them newsletters and updates in their email.</p>
<p><strong>5. Be Short and To the Point:</strong> Avoid lengthy and meaningless posts. Be short, brief and informative. Always make sure the information in your blog is authentic.</p>
<p><strong>6. Revise Your Work:</strong> Always cross check your writing for spelling mistakes and meaningless sentences. Do not be repetitive and present the work in an attractive and lively way to leave the reader happy to be on your site.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/6-copy-writing-skills-bloggers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing Your Blog with WordPress – For Beginners at Blogging</title>
		<link>http://blogcraving.com/customizing-blog-wordpress-beginners-blogging/</link>
		<comments>http://blogcraving.com/customizing-blog-wordpress-beginners-blogging/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 14:00:50 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=778</guid>
		<description><![CDATA[WordPress is the most recommended software application for beginners. This is because it is easy to understand and use for bloggers. With this application, one can design websites, beautify them and make their blogs attractive. Additionally, it is available for free. Never forget that to attract traffic you need to dedicate more time and work [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is the most recommended software application for beginners. This is because it is easy to understand and use for bloggers. With this application, one can design websites, beautify them and make their blogs attractive. Additionally, it is <a title="Download WordPress" href="http://wordpress.org/download/" target="_blank">available for free</a>.</p>
<p>Never forget that to attract traffic you need to dedicate more time and work hard. Unless you provide people with readable and enjoyable content, no one will read your blogs. Blogs are the quickest means to grow your website and making money. Therefore, as bloggers you must do all you can to manage the blog and make it worth reading.</p>
<h2>How to Use WordPress?</h2>
<p>This ideal blogging platform is really easy to use for anyone. You don’t need to be a web designer to be able to use WordPress. There are simple steps in using WordPress for blogs.<span id="more-778"></span></p>
<ol>
<li>To begin using it, you must first download and install it on your PC. Then you can begin designing your website.</li>
<li>You will need the perfect theme to work with your blog. There are many themes available on the internet. You can check in the resources section to find the theme that suits you best. Alternatively, you can design your theme by customizing existing theme templates.</li>
<li>Always try to choose templates with widgets. These are tools that allow you to edit your web content using options. You can add, remove, move and do other things to items on your side bar. This makes it easy to explore and work with ease while customizing your web content.</li>
<li>To increase your options with themes, you can install as many as you want. Simply upload the folder with themes to the directory. Then you can change themes once you log on through the administration panel and click on the Presentation option.</li>
<li>Plugins increase options for functions you can use on the blog. WordPress has its own plugins but for more options, you can search for plugins. There are links available in the resources section.</li>
<li>Once you get the plugins all you need to do is install and activate them. Upload the plugin files or folder to the appropriate directory. Then log in as administrator and click on plugins, and activate the links.</li>
</ol>
<p>I’d like to conclude with a tip for beginners and experienced users of WordPress. Always use the upgraded version. Like all applications, latest versions of WordPress will be more resourceful and secure.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/customizing-blog-wordpress-beginners-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing WordPress: Don&#8217;t Reinvent the Wheel</title>
		<link>http://blogcraving.com/customizing-wordpress-reinvent-wheel/</link>
		<comments>http://blogcraving.com/customizing-wordpress-reinvent-wheel/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 19:32:06 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=733</guid>
		<description><![CDATA[The greatest single feature of WordPress is how easily it can be customized.  As a matter of fact, you&#8217;ve probably been on websites that you did not even realize were powered by WordPress. WP is much more than a blogging platform.  It can be a full-blown CMS.  All it takes is some elbow grease. With [...]]]></description>
			<content:encoded><![CDATA[<p>The greatest single feature of WordPress is how easily it can be customized.  As a matter of fact, you&#8217;ve probably been on websites that you did not even realize were powered by WordPress.</p>
<p>WP is much more than a blogging platform.  It can be a full-blown CMS.  All it takes is some elbow grease.</p>
<p>With that in mind, the other great thing about WordPress is open-source coding.</p>
<p>I&#8217;ll go out on a limb and say that 90% of the functions, designs, and layouts you want for your WordPress site already exist somewhere else.  If you want it, chances are that someone has already made it happen.</p>
<p>When creating your template, do not reinvent the wheel.</p>
<p>My advice is to <a href="http://blogcraving.com/blog-templates/">find a prebuilt template</a> that accomplishes the majority of what you want on your site.  It does not have to be exactly what you want, just somewhat in the neighborhood.</p>
<p>Get that template in your hands (either paid or free), and use it as your &#8220;launch pad.&#8221;<span id="more-733"></span></p>
<p>Next, go out and find the missing elements that you want.  Perhaps there&#8217;s a cool way of displaying author information in your WordPress posts, or a snazzy photo gallery function.  Just go out there and find it.</p>
<p>Then try to figure out how it was built.</p>
<p>If the template was built by a design shop, head over to that shop and see if you can buy the template.</p>
<p>You can also head over to the <a title="Wordpress support forums" href="http://wordpress.org/support/">WordPress support forums</a>.  They are free and can often tell you exactly how to achieve a certain function.</p>
<p>Take those cherry picked items back to your site and incorporate them into the template you previously purchased.  Often, it is as easy as copy/pasting some code and doing some light weight CSS work.</p>
<p>That should cover 90% of your design needs right there.  The remaining 10% will be what you have to build out from scratch.</p>
<p>Instead of building 80% or 100% of your template by hand, you&#8217;ve just cut the workload drastically.  Now you can focus your energy on those totally unique customizations instead of stuff that has been built 100 times over by other developers.</p>
<p>If you have taken the plunge and hired developer to help you, the same exercise will come in handy.  Get out there and look for the things that you want to have on your site.  Find designs you like.  Share all of this information with your developer, and it will make their life easier.  You will get what you are looking for much quicker if the developer has samples to work from.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/customizing-wordpress-reinvent-wheel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5 Best Twitter Plugins for WordPress</title>
		<link>http://blogcraving.com/top-5-twitter-plugins-wordpress/</link>
		<comments>http://blogcraving.com/top-5-twitter-plugins-wordpress/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 03:27:46 +0000</pubDate>
		<dc:creator>Travis Lusk</dc:creator>
				<category><![CDATA[How to...]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blogcraving.com/?p=720</guid>
		<description><![CDATA[Twitter integrations into WordPress blogs are all the rage these days.  It is the most commonly asked for feature among our clients. With that, here are the Top 5 Twitter Plugins for WordPress. 1) Twitter Widget Pro: This plugin creates a sidebar widget with tons of configurable controls to adjust the Twitter feed&#8217;s display.  You [...]]]></description>
			<content:encoded><![CDATA[<p>Twitter integrations into WordPress blogs are all the rage these days.  It is the most commonly asked for feature among our clients.</p>
<p>With that, here are the <strong>Top 5 Twitter Plugins for WordPress</strong>.</p>
<h3>1) <a href="http://wordpress.org/extend/plugins/twitter-widget-pro/">Twitter Widget Pro</a>:</h3>
<p>This plugin creates a sidebar widget with tons of configurable controls to adjust the Twitter feed&#8217;s display.  You can also control things like showing the date/time stamps, etc.  This is great for pulling your Tweets right into your site, or pulling in Tweets from a group of people based on a subject.  It is also a great way to keep some fresh, active content going on your site until your next post.</p>
<h3>2) <a href="http://wordpress.org/extend/plugins/twitter-feed/">Twitter Feed</a>:</h3>
<p>Got friends? Ha.  By that I mean do you have multiple people working on your blog?  Or do you have multiple Twitter followers/accounts that you would like to display on your site&#8217;s sidebar?  This is the plugin for you.  Easily pull in Tweets from multiple users and control the slick graphic display of them on your site.  Includes the Twitter user picture and more. <span id="more-720"></span></p>
<h3>3) <a href="http://wordpress.org/extend/plugins/twitter-friends/">Twitter Friends</a>:</h3>
<p>Show the loooove!  This widget allows you to show who is following you on Twitter.  This is a great way to thank loyal followers and to encourage people to follow you.  This plugin will show the user&#8217;s Twitter photo, bio line, and most recent Tweet.  You can toggle on/off each feature as well allowing you to show more details about each person (or not).</p>
<h3>4) <a href="http://wordpress.org/extend/plugins/twitter-friends/">Post to Twitter</a> (and Twitter to Post)</h3>
<p>Oh how magical a world it would be if you could somehow get your WordPress posts to automatically show up in your Twitter account as Tweets?  How insane would it be if you could turn your Tweets into actual posts within WordPress?  Dream no more my friends.  Post to Twitter does exactly that.  It allows you to control the direction of information  (Twitter to WP  vs  WP to Twitter).  Control the follow of Tweetalicious in either way you choose, or both!</p>
<h3>5) <a href="http://wordpress.org/extend/plugins/twitter-blaster/">Twitter Blaster</a>:</h3>
<p>Kind of a unique way to use Twitter and WordPress.  This plugin allows your users to publish to your Twitter account.  Their Tweets get held as a &#8220;pending&#8221; post for your review.  You can then approve the Tweet and have it show up in your Twitter feed.  You can also approve the Tweet as a page/post.</p>
<h3>Have one you really enjoy?  Tell me about it!</h3>
<p>Post links to your favorite Twitter plugins for WordPress in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcraving.com/top-5-twitter-plugins-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

