<?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>Make A Website With Traffic &#187; Wordpress</title>
	<atom:link href="http://www.make-a-website-with-traffic.com/category/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.make-a-website-with-traffic.com</link>
	<description>How to make a SEO Website and Promote it!</description>
	<lastBuildDate>Mon, 02 Jan 2012 22:41:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Smart Use Of Headings In WordPress Themes</title>
		<link>http://www.make-a-website-with-traffic.com/2010/11/smart-use-of-headings-in-wordpress-themes.html</link>
		<comments>http://www.make-a-website-with-traffic.com/2010/11/smart-use-of-headings-in-wordpress-themes.html#comments</comments>
		<pubDate>Tue, 30 Nov 2010 21:21:28 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.make-a-website-with-traffic.com/?p=301</guid>
		<description><![CDATA[The other day, while working my way through this tutorial on WordPress theme creation, I came across a really smart idea on how to use headings in WordPress themes that makes great sense from a SEO point of view. Page Structure It is a good idea to structure any document properly, whether it is a [...]]]></description>
			<content:encoded><![CDATA[<p>The other day, while working my way through <a title="Ian Stewart's WordPress Theme Tutorial" href="http://themeshaper.com/wordpress-themes-templates-tutorial/" target="_blank">this tutorial</a> on WordPress theme creation, I came across a really smart idea on how to use headings in WordPress themes that makes great sense from a SEO point of view.</p>
<p><span id="more-301"></span></p>
<h3>Page Structure</h3>
<p>It is a good idea to structure any document properly, whether it is a web page or not. The typical way to structure documents is by using headings.</p>
<p>Headings come in levels, thereby giving you the ability to structure documents. A &#8220;heading 1&#8243; is the most important heading, followed by &#8220;heading 2&#8243;, &#8220;heading 3&#8243;, etc. Also, a <em>heading 2</em> is a sub-section of <em>heading 1</em>, and <em>heading 3</em> is a sub-section of <em>heading 2</em>, etc.</p>
<p>Such page structuring allows the reader to scan over all the headings and get a quick overview of what the document (or web page) contains.</p>
<h3>The H1 Tag</h3>
<p>The H1 HTML heading tag, <span style="font-family: courier new,courier;">&lt;h1&gt;&lt;/h1&gt;</span>, is the tag we are most concerned with on any webpage when it comes to visible text on the page. The text inside this tag is supposed to tell us what the topic of the page is.Within the page structure described earlier, this is most important visible text on the web page.</p>
<p>Typically, there should be one H1 tag on a web page, it should be near the top of the page. It should contain text that not only entices the reader into reading the page content, but also contain text, typically carefully-selected keywords, that help the search engines figure out what the topic of the page content is.</p>
<h3>How WordPress Themes Often Use H1</h3>
<p>Many WordPress themes put the website&#8217;s name in a H1 tag and the site description in a H2 tag. (The page title is then usually put in a H2 tag as well.)</p>
<p>To human visitors it doesn&#8217;t matter much, but this arrangement tells the search engines that the website&#8217;s name is the most important text on every page. Yes, the website&#8217;s name is important for brand recognition, but surely it can&#8217;t be the most important bit of text on every page on the website.</p>
<p>Should the headline that tells the reader what the topic of the page is, not be considered more important? I think so.</p>
<h3>A Smarter Way To Use H1</h3>
<p>A smarter way to ensure that the search engines&#8217; attention is put in the right place, is to generally use the H1 tag for the page&#8217;s title or headline.</p>
<p>There is one exception&#8230; the home page. One the home page, put the website description in a H1 tag (it does afterall describe what the entire website is all about), and put the home page&#8217;s heading in a H2 tag.</p>
<p>What about the website&#8217;s name? Don&#8217;t put it in a heading tag. Simply put it in DIV tags and apply CSS formatting to make the site&#8217;s name stand out visually on the page.</p>
<h3>How To Implement This Smarter Way Of Using H1</h3>
<p>Here&#8217;s how to implement this:</p>
<p>Your site name and description is typically located in the <em>header.php</em> file of your theme. Open that file in a text editor or your favorite php editor. Find the lines of code where your site name and description is specified. The site name code is usually <span style="color: #333399;"><span style="font-family: courier new,courier;">&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</span></span>, surround by an A tag and probably also by a H1 tag. Your site description code is usually <span style="color: #333399;"><span style="font-family: courier new,courier;">&lt;?php bloginfo(&#8216;description&#8217;); ?&gt;</span></span>, surrounded by a DIV tag or possibly a H2 tag. Then do the following:</p>
<ol>
<li>If your site name is surrounded by H1, change it to DIV, or <span style="color: #333399;"><span style="font-family: courier new,courier;">&lt;h1&gt;&lt;/h1&gt;</span></span> to <span style="color: #333399;"><span style="font-family: courier new,courier;">&lt;div&gt;&lt;/div&gt;</span></span>. You may also have to add a new CSS class to your theme&#8217;s <em>style.css</em> file and assign the class to the DIV tag. This new CSS class should contain the formatting needed to retain original formatting for your site name.</li>
<li>Replace your original site description code with a conditional statement that checks if the current page is your home page or not, and then places your site description either inside a H1 tag (if it is the home page) or a DIV tag (if it is not the home page). Here is an example:</li>
</ol>
<pre style="padding-left: 60px;"><span style="color: #333399;">&lt;?php if ( is_home() || is_front_page() ) { ?&gt; </span></pre>
<pre style="padding-left: 60px;"><span style="color: #333399;">&lt;h1 class="sitedesc"&gt;&lt;?php bloginfo('description'); ?&gt;&lt;/h1&gt;</span></pre>
<pre style="padding-left: 60px;"><span style="color: #333399;">&lt;?php } else { ?&gt; </span></pre>
<pre style="padding-left: 60px;"><span style="color: #333399;">&lt;div class="sitedesc"&gt;&lt;?php bloginfo('description'); ?&gt;&lt;/div&gt; </span></pre>
<pre style="padding-left: 60px;"><span style="color: #333399;">&lt;?php } ?&gt;</span>
</pre>
<p>That covers your site description. The next step is to make sure that your page title or headline is displayed within the correct tags. Here you have to edit two of your theme&#8217;s files, <em>page.php</em> and <em>single.php</em>.</p>
<p>Open the first file and look for <span style="color: #333399;"><span style="font-family: courier new,courier;">&lt;?php the_title(); ?&gt;</span></span>, more than like surrounded by an H2 tag. Replace that code with a conditional statement that also checks if the current page is the home page and then either put the page title inside a H2 tag (if it is the home page) or a H1 tag (if it is not the home page). Here is an example:</p>
<pre style="padding-left: 60px;"><span style="color: #333399;">&lt;?php if ( is_home() || is_front_page() ) { ?&gt; </span></pre>
<pre style="padding-left: 60px;"><span style="color: #333399;">&lt;h2 class="pagetitle"&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt; </span></pre>
<pre style="padding-left: 60px;"><span style="color: #333399;">&lt;?php } else { ?&gt; </span></pre>
<pre style="padding-left: 60px;"><span style="color: #333399;">&lt;h1 class="pagetitle"&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt; </span></pre>
<pre style="padding-left: 60px;"><span style="color: #333399;">&lt;?php } ?&gt;</span></pre>
<p>Repeat this step for the other php file as well.</p>
<p>Add a CSS class to your theme&#8217;s <em>style.css</em> file that applies the same formatting to the H1 and H2 tags so that there is no visual difference when either tag is used.</p>
<p>And there you have it&#8230; your WordPress theme will now use heading tags on your website that will do a much better job for your site in the search engines.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.make-a-website-with-traffic.com/2010/11/smart-use-of-headings-in-wordpress-themes.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now Running On WordPress</title>
		<link>http://www.make-a-website-with-traffic.com/2009/09/now-running-on-wordpress.html</link>
		<comments>http://www.make-a-website-with-traffic.com/2009/09/now-running-on-wordpress.html#comments</comments>
		<pubDate>Sun, 27 Sep 2009 16:38:08 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[CMS]]></category>

		<guid isPermaLink="false">http://66.147.244.150/~makeawe1/?p=134</guid>
		<description><![CDATA[Make-A-Website-With-Traffic.com Is Now Running On WordPress After running Make-A-Website-With-Traffic.com on a different platform for all of its existence, I decided to switch it over to run on WordPress instead. Here&#8217;s why I did it, and what it took to get the job done&#8230; It&#8217;s not that I was unhappy with the previous platform. In fact, [...]]]></description>
			<content:encoded><![CDATA[<h1>Make-A-Website-With-Traffic.com <br />
 Is Now Running On WordPress</h1>
<p>After running Make-A-Website-With-Traffic.com on a different platform for all of its existence, I decided to switch it over to run on WordPress instead. Here&#8217;s why I did it, and what it took to get the job done&#8230;</p>
<p><span id="more-134"></span>It&#8217;s not that I was unhappy with the previous platform. In fact, I&#8217;m still running one of my other websites, <a title="Fun Things to do in Texas" href="http://www.fun-things-texas.com/">Fun-Things-Texas.com</a>, on <a href="http://www.make-a-website-with-traffic.com/web-site-software/site-build-it.html">Site Build It</a>. Because this site is more a &#8220;labor of love&#8221; than anything else, I decided to find a way to cut down on hosting expenses.</p>
<p>My choice of using WordPress as the new platform also gave me the chance to experiment with WordPress and learn how to use it as a CMS, i.e. use it not only as blog (its traditional use), but also to recreate a traditional website.</p>
<h2>Why WordPress?</h2>
<p>I had previous experience with WordPress because I used it to set up a self-hosted blog. So I knew it was easy to install and set up.</p>
<p>The other attraction was all the &#8220;extras&#8221; that are freely available for WordPress thanks to so many people out there who develop these &#8220;extras&#8221; for the pleasure that it brings them.</p>
<h3>WordPress Themes</h3>
<p>There are a boat-load of very nice-looking WordPress themes available that will satify a wide variety of  website &#8220;<em>look &amp; feel</em>&#8221; needs. The themes are all easy to install and extend, and when you want to change themes for a new &#8220;<em>look &amp; feel</em>&#8220;, it is easy to do too.</p>
<h3>WordPress Plugins</h3>
<p>WordPress plugins are used to extend the basic WordPress template to add all the extra functionality you need. Here you also have lots to choose from, and the plugins are mostly installable by the simple click of a button. Occasionally a plugin will require that you make some manual changes to one of your WordPress source pages, but there is usually clear instructions on what to do.</p>
<p>As you can see here, I was able to recreate the previous version of the website in WordPress (see the Menu on the right), and gain a blog in the process. The fact that my visitors can comment on most of the content on the website, is a big bonus to me. I think that the conversations that develop in this way add value to the original post, and everybody gains from that.</p>
<p><strong>Coming soon&#8230;</strong> In the future I plan to write an article outling all the steps that I had to take to recreate my website in WordPress to use WordPress like a CMS.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.make-a-website-with-traffic.com/2009/09/now-running-on-wordpress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

