<?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>Lets Build Websites &#187; categories</title>
	<atom:link href="http://letsbuildwebsites.com/tag/categories/feed/" rel="self" type="application/rss+xml" />
	<link>http://letsbuildwebsites.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sat, 19 May 2012 03:02:57 +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>Adding an Extra Navigation Menu to Thesis Custom Functions</title>
		<link>http://letsbuildwebsites.com/adding-an-extra-navigation-menu-to-thesis-custom-functions/</link>
		<comments>http://letsbuildwebsites.com/adding-an-extra-navigation-menu-to-thesis-custom-functions/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 06:51:22 +0000</pubDate>
		<dc:creator>mitz</dc:creator>
				<category><![CDATA[Thesis Wordpress Theme]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[custom function php]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[Navigation Menu]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://wordpress-websitebuilder.com/?p=2643</guid>
		<description><![CDATA[Adding an Extra Navigation Menu to Thesis Custom Functions Yes I have the Thesis WordPress theme! How could I resist one of the best WordPress themes out there? Anyway do not rush out and buy it because it is fantastic, but not for the newbie WordPress website builder. You really need to know your way [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Adding an Extra <strong>Navigation Menu</strong> to Thesis Custom Functions</p>
<p>Yes I have the Thesis WordPress theme! How could I resist one of the best <a title="WordPress Premium Themes in My Internet Marketing Toolbox" href="http://letsbuildwebsites.com/wordpress-premium-themes-in-my-internet-marketing-toolbox/">WordPress themes</a> out there? Anyway do not rush out and buy it because it is fantastic, but not for the newbie WordPress website builder. You really need to know your way around .php and .css if you want to feel good about buying Thesis. I personally think it is wonderful and I am no expert at coding but I do learn quickly. After all, I am a computer geek. Anyway if you are looking for a WordPress theme then definitely check out <a title="Elegant Themes – Why I Will Never Cancel This Premium Themes Membership" href="http://letsbuildwebsites.com/elegant-themes-why-i-will-never-cancel-this-premium-themes-membership/" target="_blank">Elegant themes</a> as they are already designed for you. Thesis is a bare theme where you can customize it until it becomes something.</p>
<p>If you have already purchased Thesis then this tutorial is for you.</p>
<p>In this tutorial I am going to show you how to add a categories menu to your Thesis WordPress Website. This is very easy and a similar tutorial is on the Thesis website but I have added a few extras.</p>
<h2>How to add an extra navigation menu in a Thesis blog?</h2>
<p>Firstly, here is a screen shot of my Website before I added the categories menu. As you can see it is rather boring and it does have a menu above the Website title. It is grey. I am going to add a categories <span style="text-decoration: underline;">navigation menu</span> in the space where the arrows are pointing.</p>
<p><a href="http://letsbuildwebsites.com/wp-content/uploads/2011/05/30-05-2011-2-15-23-PM.png"><img class="alignnone size-medium wp-image-2645" title="extra navigation thesis" src="http://letsbuildwebsites.com/wp-content/uploads/2011/05/30-05-2011-2-15-23-PM-300x187.png" alt="extra navigation thesis" width="300" height="187" /></a></p>
<h2>To add the categories navigation menu we need to add code to the <code>custom_functions.php.</code></h2>
<p>1.  Click on the thesis menu in the left column. You need to be signed into your dashboard.</p>
<p>2.  Choose Custom file editor from the menu.</p>
<p>3.  Click on the drop down menu to choose the <code>custom_functions.php</code> and then click on edit selected file.</p>
<p>NOTE: You must be careful not to make a mistake on this file. If you do you might have to upload a fresh version to your server to repair the damage.</p>
<p><a href="http://letsbuildwebsites.com/wp-content/uploads/2011/05/30-05-2011-3-22-33-PM.png"><img class="alignnone size-medium wp-image-2648" title="extra navigation menu " src="http://letsbuildwebsites.com/wp-content/uploads/2011/05/30-05-2011-3-22-33-PM-300x153.png" alt="extra navigation menu " width="300" height="153" /></a></p>
<p>4.  This is where you add the code. Do not make extra spaces, just paste the code directly on the next line available.</p>
<h1>Add an extra navigation menu to thesis:</h1>
<p>Paste this code in to your <code>custom_functions.php</code> section as shown above.</p>
<p>This exact code is from <a href="http://diythemes.com/thesis/rtfm/add-separate-nav-menu-categories/" rel="nofollow" target="_blank">http://diythemes.com/thesis/rtfm/add-separate-nav-menu-categories/</a></p>
<p><code>function cat_nav() { ?&gt;<br />
&lt;ul id="cat_tabs"&gt;<br />
&lt;?php wp_list_categories('title_li='); ?&gt;<br />
&lt;/ul&gt;<br />
&lt;?php }</code></p>
<p><code>add_action('thesis_hook_after_header','cat_nav');</code></p>
<p>This is what my page looks like after I added the code above. But the problem is that it was showing categories that I did not want to show.</p>
<p><a href="http://letsbuildwebsites.com/wp-content/uploads/2011/05/30-05-2011-2-16-25-PM.png"><img class="alignnone size-medium wp-image-2646" title="extra navigation thesis" src="http://letsbuildwebsites.com/wp-content/uploads/2011/05/30-05-2011-2-16-25-PM-300x198.png" alt="extra navigation thesis" width="300" height="198" /></a></p>
<h3>To remove links from the navigation menu that you do not want showing simply change the code to this:</h3>
<p><code>&lt;?php wp_list_categories('exclude=3,4,5,8,9,617&amp;title_li='); ?&gt;</code></p>
<p>I have listed all the pages I do not want showing in this navigation menu. I previously wrote about <a title="Remove top menu page navigation links from an Artisteer WordPress theme" href="http://wordpress-websitebuilder.com/remove-top-menu-page-navigation-from-an-artisteer-wordpress-theme/">removing navigation links</a> in Artisteer but this can also apply to thesis and most other Worpdress themes. In that tutorial I am removing a page link from the navigation menu.</p>
<h3>To change the color of your navigation menus:</h3>
<p>1.  Go to design options on the Thesis menu.</p>
<p><a href="http://letsbuildwebsites.com/wp-content/uploads/2011/05/30-05-2011-2-48-11-PM.png"><img class="alignnone size-full wp-image-2649" title="Thesis design options" src="http://letsbuildwebsites.com/wp-content/uploads/2011/05/30-05-2011-2-48-11-PM.png" alt="Thesis design options" width="161" height="169" /></a></p>
<p>2.  Under Fonts, Colors, and More heading you will see the navigation menu (nav) options.</p>
<p>3.  Press on the plus sign next to it to expand the options.</p>
<p>4.  See the arrows below pointing to colors. I changed them to make my menu blue. I also changed the hover color.</p>
<p><a href="http://letsbuildwebsites.com/wp-content/uploads/2011/05/30-05-2011-2-48-58-PM.png"><img class="alignnone size-medium wp-image-2650" title="change color of navigation menus" src="http://letsbuildwebsites.com/wp-content/uploads/2011/05/30-05-2011-2-48-58-PM-164x300.png" alt="change color of navigation menus" width="164" height="300" /></a></p>
<p>When changing options make sure you press the &#8220;Big A** Save Button&#8221;.</p>
<h3>To move the navigation menu to the top of the header change this code:</h3>
<p><code>add_action('thesis_hook_after_header','cat_nav');</code></p>
<p>To:</p>
<p><code>add_action('thesis_hook_before_header','cat_nav');</code></p>
<p>See the screen shot below.</p>
<p><a href="http://letsbuildwebsites.com/wp-content/uploads/2011/05/30-05-2011-3-04-59-PM.png"><img class="alignnone size-medium wp-image-2647" title="extra navigation thesis menu" src="http://letsbuildwebsites.com/wp-content/uploads/2011/05/30-05-2011-3-04-59-PM-300x138.png" alt="extra navigation thesis categories" width="300" height="138" /></a></p>
<p><em>I will add a few more customizations for adding an extra navigation menu in Thesis. </em></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://letsbuildwebsites.com/adding-an-extra-navigation-menu-to-thesis-custom-functions/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Make Post Categories When Building your WordPress Website</title>
		<link>http://letsbuildwebsites.com/make-post-categories-when-building-your-wordpress-website/</link>
		<comments>http://letsbuildwebsites.com/make-post-categories-when-building-your-wordpress-website/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 02:52:52 +0000</pubDate>
		<dc:creator>mitz</dc:creator>
				<category><![CDATA[How To Build Wordpress Categories]]></category>
		<category><![CDATA[build websites]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://wordpress-websitebuilder.com/?p=75</guid>
		<description><![CDATA[When developing a WordPress website I highly recommend that you plan what post categories you are going to have. You shouldn&#8217;t just create WordPress categories on the spare of the moment, they should be search engine optimized. You can use the Google keyword Tool to find related keywords and use them for your categories. (As [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>When developing a WordPress website I highly recommend that you plan what <b>post categories</b> you are going to have. You shouldn&#8217;t just create WordPress categories on the spare of the moment, they should be search engine optimized. You can <a title="Find which keywords to use with the Google external keyword tool" href="http://letsbuildwebsites.com/find-which-keywords-to-use-with-the-google-external-keyword-tool/">use the Google keyword Tool</a> to find related keywords and use them for your categories. (As shown below)</p>
<p>The first way to perform <a title="Search Engine Optimization (SEO) Explained for New WordPress Website Builders" href="http://letsbuildwebsites.com/search-engine-optimization-seo-explained-for-new-wordpress-website-builders/">Search Engine Optimization</a> on your <i>post categories</i> is to use a title, preferably, that has your keywords included in it&#8230;If you look over to the right of this post you will see that my categories all try to have my keywords in them. (Same with my domain name). The second way to SEO your categories is to write an appropriate description for it. Most people neglect to write a description for their <u>post categories</u> at all. This is a big mistake!</p>
<h2>Watch this video to see how I Optimize my WordPress website and create SEO post categories</h2>
<iframe width="640" height="385" src="http://www.youtube.com/embed/e-fiTX-V3QQ" frameborder="0" type="text/html"></iframe><div style="text-align:right;"><a style="color:#aaa;font-size:9px" href="http://www.clickonf5.org/" title="IFRAME Embed for Youtube Free WordPress Plugin" target="_blank">IFRAME Embed for Youtube</a></div>
<p>See the screenshot below. I have entered enter a keyword and pressed search. The related keywords are all listed below. I can sort them by global monthly searches or even CPC (cost per click). For choosing a WordPress post categories I would probably sort them by the search volume first. Then I would choose the most appropriate keywords that I think are related to my main keyword of my website.</p>
<p><strong><em>Things to remember:</em></strong></p>
<ol>
<li>Press on <strong><em>Exact match</em></strong> and not broad when searching.</li>
<li>Have a <strong><em>variety</em></strong> but include your keyword in some.</li>
<li>Make sure the <strong><em>categories are related</em></strong> tightly.</li>
<li><strong><em>Write a description</em></strong> that includes your keywords.</li>
</ol>
<p><a href="http://letsbuildwebsites.com/wp-content/uploads/2010/03/google-keyword-tool6.png"><img class="alignnone size-medium wp-image-3942" title="google keyword tool WordPress post categories" src="http://letsbuildwebsites.com/wp-content/uploads/2010/03/google-keyword-tool6-300x267.png" alt="Wordpress post categories" width="300" height="267" /></a></p>
<p>You can also check the box next to each keyword you are interested in and download them into a CSV file. You will see this in the video above.</p>
<p>See more <a href="http://letsbuildwebsites.com/wordpress-website-basics/">WordPress Website Basics</a></p>
<h3>Do you have any questions about creating a WordPress post categories?</h3>
]]></content:encoded>
			<wfw:commentRss>http://letsbuildwebsites.com/make-post-categories-when-building-your-wordpress-website/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

