<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WordPress Visual QuickStart Guide &#187; WordPress</title>
	<atom:link href="http://www.wpvisualquickstart.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wpvisualquickstart.com</link>
	<description>Learn WordPress the Quick and Easy Way!</description>
	<lastBuildDate>Tue, 13 Dec 2011 00:09:34 +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>Custom Menus in WordPress 3.0</title>
		<link>http://www.wpvisualquickstart.com/2010/custom-menus-in-wordpress-3-0/</link>
		<comments>http://www.wpvisualquickstart.com/2010/custom-menus-in-wordpress-3-0/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 21:50:15 +0000</pubDate>
		<dc:creator>Jessica Neuman Beck</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress 3.0]]></category>
		<category><![CDATA[custom menus]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[new features]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordpress 3.0]]></category>

		<guid isPermaLink="false">http://www.wordpress28vqs.com/?p=200</guid>
		<description><![CDATA[One of the coolest new features in WordPress 3.0 is the ability to add custom menus. In this post we&#8217;ll walk you through the process of adding custom menu support to your existing them as well as setting up the custom menus in the admin section. 1. Add the register_nav_menus function to your functions.php file. [...]]]></description>
			<content:encoded><![CDATA[<p>One of the coolest new features in WordPress 3.0 is the ability to add custom menus. In this post we&#8217;ll walk you through the process of adding custom menu support to your existing them as well as setting up the custom menus in the admin section.</p>

<a href='http://www.wpvisualquickstart.com/2010/custom-menus-in-wordpress-3-0/old-menu/' title='old menu'><img width="150" height="150" src="http://www.wpvisualquickstart.com/wp-content/uploads/2010/08/old-menu-150x150.png" class="attachment-thumbnail" alt="old menu" title="old menu" /></a>
<a href='http://www.wpvisualquickstart.com/2010/custom-menus-in-wordpress-3-0/functions/' title='functions'><img width="150" height="150" src="http://www.wpvisualquickstart.com/wp-content/uploads/2010/08/functions-150x150.png" class="attachment-thumbnail" alt="functions" title="functions" /></a>
<a href='http://www.wpvisualquickstart.com/2010/custom-menus-in-wordpress-3-0/menus/' title='Menus'><img width="150" height="150" src="http://www.wpvisualquickstart.com/wp-content/uploads/2010/08/Menus-150x150.png" class="attachment-thumbnail" alt="Menus" title="Menus" /></a>
<a href='http://www.wpvisualquickstart.com/2010/custom-menus-in-wordpress-3-0/theme-locations/' title='Theme Locations'><img width="150" height="150" src="http://www.wpvisualquickstart.com/wp-content/uploads/2010/08/Theme-Locations-150x150.png" class="attachment-thumbnail" alt="Theme Locations" title="Theme Locations" /></a>

<p>1. Add the register_nav_menus function to your functions.php file.</p>
<p>In your functions.php file, add the following code:<br />
<code>register_nav_menus( array(<br />
'main-menu' =&gt; __( 'Main Menu' ),<br />
) );</code><br />
This will allow your theme to recognize and register a custom navigation menu.</p>
<p>2. Replace the code for your current navigation menu (in your header.php file) with wp_nav_menu.</p>
<p>Open your header.php file and find the section that calls up your navigation menu. It may look something like this:</p>
<p><code>&lt;?php wp_list_pages(); ?&gt;</code><br />
Replace that code with this one:</p>
<p><code>&lt;?php wp_nav_menu( array( 'theme_location' =&gt; 'main-menu' ) ); ?&gt;</code><br />
Using the above code will replace your existing navigation menu with one you specify in the new Menus section (see below).</p>
<p>3. Log in to the admin area of your WordPress site and go to Appearance &gt; Menus.</p>
<p>4. Create a new menu. Give your menu a name (this will not be displayed on your site) and add links by choosing from your pages, categories, or custom URLs. Once you&#8217;ve added all the links you want to include in your navigation menu, click &#8220;Save Menu.&#8221;</p>
<p>5. In the top left of the Menus section, you will see a box labeled &#8220;Theme Locations&#8221; which should say the following: <em>Your theme supports 1 menu. Select which menu you would like to use.</em> In the drop-down, choose the menu you just created and hit &#8220;Save.&#8221;</p>
<p>That&#8217;s it! You&#8217;ve just set up custom menus for your WordPress theme. You can add, delete or re-order your menu items any time you want.</p>
<p>Additionally, you can add custom menus to your sidebar, too &#8211; without touching a single line of code. Just add a new custom menu by clicking the plus sign next to your existing menu. Once you&#8217;ve got your new menu named and some menu items in place, go to Appearance &gt; Widgets and choose the Custom Menu widget. Drag it to your sidebar, give it a name, and you&#8217;re ready to roll!</p>
<p>Questions? Problems? Leave a comment and we&#8217;ll do our best to help you out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpvisualquickstart.com/2010/custom-menus-in-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New contest: win a copy of the book!</title>
		<link>http://www.wpvisualquickstart.com/2009/new-contest-win-a-copy-of-the-book/</link>
		<comments>http://www.wpvisualquickstart.com/2009/new-contest-win-a-copy-of-the-book/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 20:21:13 +0000</pubDate>
		<dc:creator>Jessica Neuman Beck</dc:creator>
				<category><![CDATA[VQS]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[couldbe studios]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Win]]></category>

		<guid isPermaLink="false">http://www.wordpress28vqs.com/uncategorized/new-contest-win-a-copy-of-the-book/</guid>
		<description><![CDATA[Our next contest is up: become a fan of our company, couldbe studios, on Facebook &#8211; once we reach 100 fans we&#8217;ll pick someone at random to win a copy of the WordPress Visual QuickStart Guide!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.facebook.com/pages/Portland-OR/couldbe-studios/8090396629?ref=nf"><img src="http://www.wordpress28vqs.com/wp-content/uploads/2009/12/Facebook-thumb.jpg" height="146" align="left" width="180" /></a>Our next contest is up: <a href="http://www.facebook.com/pages/Portland-OR/couldbe-studios/8090396629?ref=nf" title="couldbe studios on Facebook">become a fan of our company, couldbe studios, on Facebook</a> &#8211; once we reach 100 fans we&#8217;ll pick someone at random to win a copy of the WordPress Visual QuickStart Guide! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpvisualquickstart.com/2009/new-contest-win-a-copy-of-the-book/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming Soon</title>
		<link>http://www.wpvisualquickstart.com/2009/coming-soon/</link>
		<comments>http://www.wpvisualquickstart.com/2009/coming-soon/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 23:29:01 +0000</pubDate>
		<dc:creator>Jessica Neuman Beck</dc:creator>
				<category><![CDATA[VQS]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.wordpress28vqs.com/uncategorized/coming-soon/</guid>
		<description><![CDATA[Our book&#8217;s release date is right around the corner &#8211; in fact, we just got our advance copies in the mail today! Check it out:]]></description>
			<content:encoded><![CDATA[<p>Our book&#8217;s release date is right around the corner &#8211; in fact, we just got our advance copies in the mail today! Check it out:</p>
<p><a href="http://www.wordpress28vqs.com/wp-content/uploads/2009/11/Photo_on_2009-11-11_at_12-full.43__3.jpg" class="image-link"><img class="linked-to-original" src="http://www.wordpress28vqs.com/wp-content/uploads/2009/11/Photo_on_2009-11-11_at_12-thumb.43__3.jpg" height="315" align="left" width="380" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpvisualquickstart.com/2009/coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

