<?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>SEO Blog by RLM &#187; Navigation</title>
	<atom:link href="http://www.rlmseo.com/blog/category/wordpress/navigation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rlmseo.com/blog</link>
	<description>SEO, PPC, Web Design &#38; Optimization</description>
	<lastBuildDate>Fri, 03 Sep 2010 14:23:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Cutom Navigation Menus in WordPress 3.0</title>
		<link>http://www.rlmseo.com/blog/cutom-navigation-menus-in-wordpress-3-0/</link>
		<comments>http://www.rlmseo.com/blog/cutom-navigation-menus-in-wordpress-3-0/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 03:37:02 +0000</pubDate>
		<dc:creator>John Crenshaw</dc:creator>
				<category><![CDATA[Navigation]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[navigation menu]]></category>

		<guid isPermaLink="false">http://www.rlmseo.com/blog/?p=1026</guid>
		<description><![CDATA[Well, WordPress 3.0 is out and I&#8217;ve got to say, I&#8217;m pretty impressed with it so far. One of the most immediately useful new features is the custom navigation menu tool. What may not be obvious, however, is exactly how to add support for this killer new feature to your theme. So, now that I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>Well, WordPress 3.0 is out and I&#8217;ve got to say, I&#8217;m pretty impressed with it so far. One of the most immediately useful new features is the custom navigation menu tool. What may not be obvious, however, is exactly how to add support for this killer new feature to your theme. So, now that I&#8217;ve finally had time to play with it on a recent project, integrating WordPress into the existing design for the blog section of <a title="The Big Property List blog" href="http://blog.thebigpropertylist.co.uk/">The Big Property List</a>, here&#8217;s a quick little <strong>WordPress 3.0 nav menu tutorial</strong> for you.</p>
<h2>Required Steps</h2>
<p>I&#8217;ll cover these steps in more detail below, but this is a basic outline of what&#8217;s required to take advantage of the custom navigation menus in WordPress 3.0:</p>
<ol>
<li>Define your custom nav menu in functions.php</li>
<li>Define a function that WordPress will call in the event a particular navigation menu does not exist</li>
<li>Create the navigation menus in the WordPress admin</li>
<li>Assign the newly-created navigation menus to their appropriate locations in the WordPress admin</li>
<li>Add function calls to display the navigation menus to your theme</li>
</ol>
<h2>Define Your Custom Navigation Menus</h2>
<p>The first thing to do is let WordPress know about your new navigation menus and what you&#8217;d like to call them. So, open up functions.php and add something like the following:</p>
<pre class="brush: php;">add_action('after_setup_theme', 'my_after_setup_function');
function my_after_setup_function() {
    /**
     * The register_nav_menu function takes two parameters
     * @param string $location This is the location you'll reference when you call this nav menu in your theme code
     * @param string $description This is the description that will appear in the WordPress admin to help you assign a nav menu to the proper location
     */
    register_nav_menu('Main Menu', 'The main site navigation menu');
    register_nav_menu('Footer Nav', 'Footer navigation menu');
}</pre>
<p>Pretty simple. In case you didn&#8217;t get it, the first parameter of register_nav_menu() is what you&#8217;ll specify in the function call to tell WordPress which nav menu to display. The second parameter is what WordPress will show you in the navigation menu admin panel that helps you assign newly-created nav menus to their proper locations.</p>
<h2>Define an empty navigation menu function</h2>
<p>My testing shows WordPress does some weird stuff if you register a navigation menu (as we did above), add the function call to display that navigation menu (as we&#8217;ll do below), but you don&#8217;t actually create the navigation menu in the WordPress admin. A perfect example of this might be if a client tells you he wants to add footer navigation at some point, but isn&#8217;t quite sure what he wants there just yet.</p>
<p>By defining a function to be run in the event a navigation menu is not created or assigned in the WordPress admin, you can future-proof things a bit.</p>
<p>Again, you&#8217;ll add this to your functions.php file. In this case, I&#8217;ll be returning an empty string, which is exactly what will be printed, but if you get creative, you might find a number of uses for this.</p>
<pre class="brush: php;">function default_nav_menu() {
    return '';
}</pre>
<h2>Create the navigation menus in the WordPress admin</h2>
<p>If you&#8217;ve read this far and you can&#8217;t figure this out you need a swift kick in the teeth, but here are a few things to remember:</p>
<ul>
<li>It doesn&#8217;t matter what you call your nav menu. Name it whatever you want.</li>
<li>Can&#8217;t find a &#8220;home&#8221; link in the pages list? Try creating a custom item pointing to your site&#8217;s homepage</li>
<li>I thought this list would be longer when I started it so here&#8217;s another bullet for you to chew on.</li>
</ul>
<h2>Assign the newly-created navigation menus to their proper locations</h2>
<p>Remember the description parameter in the <span class="code">register_nav_menu</span> functions we created earlier? Take a look at the panel that says &#8220;Theme locations&#8221; and you&#8217;ll see those descriptions above select boxes. Select the nav menu you want for each location and save it all.</p>
<h2>Add function calls to display the navigation menus in your theme</h2>
<p>Here&#8217;s the code to display the navigation menus. You&#8217;ll need to add this&#8230;you guessed it&#8230;where you want the navigation menu to appear:</p>
<pre class="brush: php;">&lt;?php
wp_nav_menu( array( 'theme_location' =&gt; 'Main Menu', 'sort_column' =&gt; 'menu_order', 'container_class' =&gt; 'main_nav', 'menu_class' =&gt; 'main_nav_menu', 'fallback_cb' =&gt; 'default_nav_menu' ) );
?&gt;
</pre>
<p>A few quick notes on this function:</p>
<ul>
<li>There are a lot of parameters you can use for this function. Check out the <a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu">function reference here</a></li>
<li>Notice that &#8216;theme_location&#8217; is the same value we specified for the <span class="code">$location</span> parameter in our <span class="code">register_nav_menu</span> functions in functions.php</li>
<li>Also notice that &#8216;fallback_cb&#8217;, or fallback callback, is the empty navigation menu function (<span class="code">default_nav_menu</span>) we defined in functions.php</li>
</ul>
<h2>What about formatting?</h2>
<p>Unfortunately, WordPress only gives you the option to output the navigation menu as an unordered list. For most cases that should be fine, but in my recent experience, I had to add those little vertical lines (you know, <a href="http://en.wikipedia.org/wiki/Vertical_bar">the pipe character</a>) between each menu item to match an existing site design. So I used the <span class="code">str_replace</span> function to address the issue:</p>
<pre class="brush: php;">$sNav = wp_nav_menu( array( 'theme_location' =&gt; 'Main Menu', 'sort_column' =&gt; 'menu_order', 'container_class' =&gt; 'main_nav', 'menu_class' =&gt; 'main_nav_menu', 'echo' =&gt; false, 'fallback_cb' =&gt; 'default_menu' ) );
$sNav = str_replace(&quot;&lt;/a&gt;&lt;/li&gt;\n&lt;li &quot;, &quot;&lt;/a&gt; |&lt;/li&gt;\n&lt;li &quot;, $sNav);
echo $sNav;</pre>
<p>There might be a better way to do this but I prefer not to make things too complicated.</p>
<p>That&#8217;s it.</p>
<p>And now for the obligatory post image:</p>
<p><div id="attachment_1027" class="wp-caption aligncenter" style="width: 555px"><a href="http://www.rlmseo.com/blog/cutom-navigation-menus-in-wordpress-3-0/fireshot-capture-069-menus-%e2%80%b9-dog-the-blog-%e2%80%94-wordpress-www_dogtheblog_net_wp-admin_nav-menus_php/" rel="attachment wp-att-1027"><img src="http://www.rlmseo.com/blog/wp-content/uploads/2010/07/FireShot-capture-069-Menus-‹-Dog-the-Blog-—-WordPress-www_dogtheblog_net_wp-admin_nav-menus_php-e1278473235462.jpg" alt="WordPress 3.0 Nav menu screenshot" title="WordPress 3.0 Nav Menu" width="545" height="151" class="size-full wp-image-1027" /></a><p class="wp-caption-text">WordPress 3.0 Nav Menu</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rlmseo.com/blog/cutom-navigation-menus-in-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Auto Create Navigation Tabs for New Pages</title>
		<link>http://www.rlmseo.com/blog/auto-create-navigation-menu/</link>
		<comments>http://www.rlmseo.com/blog/auto-create-navigation-menu/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 23:43:42 +0000</pubDate>
		<dc:creator>John Crenshaw</dc:creator>
				<category><![CDATA[Navigation]]></category>
		<category><![CDATA[get_pages]]></category>
		<category><![CDATA[get_post_meta]]></category>
		<category><![CDATA[implode]]></category>
		<category><![CDATA[navigation menu]]></category>
		<category><![CDATA[wp_list_pages]]></category>

		<guid isPermaLink="false">http://www.rlmseo.com/?p=153</guid>
		<description><![CDATA[In this article I explain how you can setup your blog to automatically create main navigation links/tabs when new pages are published by using custom fields to mark those pages you want to appear in the navigation menu.]]></description>
			<content:encoded><![CDATA[<p>OK, I&#8217;ve had a number of inquiries about setting up navigation tabs to be automatically created when new pages are published (just pages, not posts). Specifically, these inquiries are about my WordPress theme, <a title="WordPress Themes" href="http://www.rlmseo.com/blog/themes/"><em><strong>This Just In!</strong></em></a>, but this technique can be adapted to any theme to achieve the same effect.</p>
<h2>Introduction</h2>
<p>OK, so our problem we&#8217;re trying to solve here is how to automatically create main navigation tabs when we create new pages so that we don&#8217;t have to edit the code every time we want a link to a new page in our main navigation menu.</p>
<p>The main problem we&#8217;re going to run into here is that we don&#8217;t want to include every single page, otherwise, as you add pages that main navigation menu is going to grow wider than it&#8217;s container, which will cause it to wrap to a new line&#8230;and that&#8217;ll look terrible.</p>
<p>To solve this problem we need to have a way to limit the number of tabs that are automatically added to our navigation menu. Now, we could just limit the number of links to the most that will fit on one line, but that isn&#8217;t an ideal solution for two reasons.</p>
<p>First of all, the nav tabs on <strong><em>This Just In!</em></strong> stretch to accommodate the text inside them. So, a limit of 10 links may be OK for one blog if the anchor text is short, but for longer anchor text, those tabs will stretch to accommodate the anchor text within them and 10 tabs may be too much, causing the menu to wrap to a new line. Not good.</p>
<p>The second problem with setting a simple limit is that as we create new pages, we may want some to show up in the main nav menu, but not others. If we set a simple limit on the number of tabs in that menu, we won&#8217;t have the control we may need over exactly which pages are included in the navigation menu and which are excluded.</p>
<h2>Create a New Category?</h2>
<p>My first thought was to create a new category to house all of our pages that we want to appear in the main nav menu and simply throw links to all those pages in that category into the main nav menu. Unfortunately, WordPress doesn&#8217;t allow you to assign categories to pages, only to posts, so that idea&#8217;s out the window.</p>
<h2>Using a Page Parent?</h2>
<p>I also considered using a page parent to act like a category. Then we could set the page parent for all the pages we want to show up in the main nav menu, and use <em>wp_list_pages()</em> to list all pages that are children of that parent. This may be a viable, and easy, option for some, but if you&#8217;ve styled child page links different from their parents you&#8217;ll need to take that into account. For instance, <em><strong><a href="/themes/" title="Free WordPress theme">This Just In!</a></strong></em> indents child pages under their parent page in the sidebar list of pages. That&#8217;s perfect for the sidebar, but not so much for the main nav&#8230; so we&#8217;ll have to go with something else.</p>
<h2>Using Custom Fields</h2>
<p>Luckily, WordPress does allow us to assign custom fields to any page. We&#8217;ll use a custom field to mark any page that we want to appear in the main nav menu, and later add any page with that custom field to the main nav menu.</p>
<p><div id="attachment_158" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-158" title="custom-fields-blank" src="http://www.rlmseo.com/blog/wp-content/uploads/2008/08/custom-fields-blank.gif" alt="The Custom Fields Area" width="500" height="232" /><p class="wp-caption-text">The Custom Fields Area</p></div></p>
<h2>Using a Custom Function</h2>
<p>Once we&#8217;ve created our custom fields, we&#8217;re going to create a function in <em>functions.php</em> that calls on those custom fields to determine what pages are supposed to show up in the navigation menu.</p>
<h2>Action Steps</h2>
<h3>Creating the Custom Field</h3>
<p>First of all, we need to locate any pages we&#8217;ve already created that we want to appear in the main nav menu. Edit those pages and add a new custom field&#8230;set <em><strong>Key</strong></em> to <em>&#8220;NavMenu&#8221;</em>, and <em><strong>Value</strong></em> to <em>&#8220;yes&#8221;</em> (without the quotes).</p>
<p><div id="attachment_159" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-159" title="custom-fields-complete" src="http://www.rlmseo.com/blog/wp-content/uploads/2008/08/custom-fields-complete.gif" alt="Custom Field with &quot;NavMenu&quot; key added" width="500" height="209" /><p class="wp-caption-text">Custom Field with &quot;NavMenu&quot; key added</p></div></p>
<p>Then select <em>&#8220;Add Custom Field&#8221;</em> button&#8230;once you&#8217;ve done that your <em><strong>Custom Fields</strong></em> area should look like Figure 3 here.</p>
<p><div id="attachment_160" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-160" title="custom-fields-done" src="http://www.rlmseo.com/blog/wp-content/uploads/2008/08/custom-fields-done.gif" alt="After Pressing &quot;Add Custom Field&quot; button" width="500" height="256" /><p class="wp-caption-text">After Pressing &quot;Add Custom Field&quot; button</p></div></p>
<p>Just repeat this process for any pages you want to show up in the main navigation menu.</p>
<h3>Adding the Function Call in Place of the Current Navigation Menu</h3>
<p>For demonstration I&#8217;ll be using my <em><strong>This Just In!</strong></em> theme, but you should be able to follow along with any theme that uses a main navigation menu like <strong><em>This Just In!</em></strong>. Now you need to open up <em>header.php</em> in whatever you use to edit PHP files and find navigation menu code block&#8230;it looks like this in <em><strong>This Just In!</strong></em>:</p>
<pre class="brush: php;">&lt;!--Main navigation menu--&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a &lt;?php if(is_home()) echo 'class=&quot;current&quot; '; ?&gt;href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot; title=&quot;Home&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a &lt;?php if(is_archive() || is_page('archives')) echo 'class=&quot;current&quot; '; ?&gt;href=&quot;&lt;?php bloginfo('url'); ?&gt;/archives/&quot; title=&quot;Visit the archives&quot;&gt;Archives&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a &lt;?php if(is_page('about')) echo 'class=&quot;current&quot; '; ?&gt;href=&quot;&lt;?php bloginfo('url'); ?&gt;/about/&quot; title=&quot;About &lt;?php bloginfo('name'); ?&gt;&quot;&gt;About&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;/feed/&quot; title=&quot;RSS Feed&quot;&gt;Feed&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;/sitemap/&quot; title=&quot;Sitemap&quot;&gt;Sitemap&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>Delete everything inside the <span class="code">&lt;ul&gt;&lt;/ul&gt;</span> tags and replace it with <span class="code">&lt;?php buildMenu(); ?&gt;</span>, so you end up with this:</p>
<pre class="brush: php;">&lt;!--Main navigation menu--&gt;
&lt;ul&gt;
&lt;?php buildMenu(); ?&gt;
&lt;/ul&gt;</pre>
<h3>Create a Function to Build the New Navigation Menu</h3>
<p>If you don&#8217;t have a functions.php file in the root directory of your theme, create one now. Then open that file for editing and add the following function:</p>
<pre class="brush: php;">// Build navigation menu
function buildMenu() {
$pages = get_pages();
$key = 'NavMenu';
$pageIDs = array();
foreach($pages as $page) {
if(strtolower(get_post_meta($page-&gt;ID, $key, true)) == 'yes')
$pageIDs[] = $page-&gt;ID;
}
$pageIDList = implode(',', $pageIDs);
wp_list_pages('include=' . $pageIDList . '&amp;title_li=');
}</pre>
<p>Be sure your <em>functions.php</em> file has opening and closing <em></em> tags. If you&#8217;re using the latest version of <em><strong>This Just In!</strong></em>, you should already have a <em>functions.php</em> file in your theme directory with something already in it. Just add the <em>buildMenu()</em> function above what&#8217;s already in the file so you end up with this:</p>
<pre class="brush: php;"> // Build navigation menu
function buildMenu() {
$pages = get_pages();
$key = 'NavMenu';
$pageIDs = array();
foreach($pages as $page) {
if(strtolower(get_post_meta($page-&gt;ID, $key, true)) == 'yes')
$pageIDs[] = $page-&gt;ID;
}
$pageIDList = implode(',', $pageIDs);
wp_list_pages('include=' . $pageIDList . '&amp;title_li=');
}

if(function_exists('register_sidebar'))
register_sidebar(array (
'before_widget' =&gt; '
	&lt;li&gt;',
'after_widget' =&gt; '&lt;/li&gt;
',
'before_title' =&gt; '&lt;span class=&quot;sidetitle&quot;&gt;',
'after_title' =&gt; '&lt;/span&gt;',
));
?&gt;</pre>
<h3>Highlighting the &#8220;Current&#8221; Page</h3>
<p>In <em><strong>This Just In!</strong></em>, the current page&#8217;s navigation menu item is highlighted with a white background and dark text. Since we&#8217;ve removed our original code, which handled that for us, we&#8217;ll need to create a new style in our <em>style.css</em> in order to replace that feature.</p>
<p>In the above code, we used a built-in WordPress function called <em>wp_list_pages()</em> to display a list of pages that were marked with our custom <em>&#8220;NavMenu&#8221;</em> field. One nice feature about that function is that it returns those pages as list items (<span class="code">&lt;li&gt;&lt;/li&gt;</span>) with the <em><strong>current_page_item</strong></em> class applied if that page is currently being viewed. So, all we need to do is add something like the following to <em>styles.css</em>:</p>
<pre class="brush: css;">#nav_menu li.current_page_item a {
background: #FFF;
color: #333;
}</pre>
<p>That first <em><strong>#nav_menu</strong></em> part may not be necessary if you&#8217;re using a theme other than <em><strong>This Just In!</strong></em>.</p>
<p>And that&#8217;s it, you&#8217;ve successfully set up your blog to create your navigation menu links for you. Now all you need to do is when writing a new page that you want to be included in the menu, be sure to add the custom field to that page as we covered earlier.</p>
<p>If you&#8217;d like to understand the code in this tutorial a little better, read on for an explanation.</p>
<h2>Code Explanation</h2>
<p>Ok, let&#8217;s take another look at our code:</p>
<pre class="brush: php;">// Build navigation menu
function buildMenu() {
$pages = get_pages();
$key = 'NavMenu';
$pageIDs = array();
foreach($pages as $page) {
if(strtolower(get_post_meta($page-&gt;ID, $key, true)) == 'yes')
$pageIDs[] = $page-&gt;ID;
}
$pageIDList = implode(',', $pageIDs);
wp_list_pages('include=' . $pageIDList . '&amp;title_li=');
}</pre>
<p>Now let&#8217;s break it down line by line</p>
<pre class="brush: php;">// Build navigation menu
function buildMenu() {</pre>
<p>Comment followed by function declaration.</p>
<pre class="brush: php;">$pages = get_pages();</pre>
<p><em><strong>get_pages()</strong></em> is a <a href="http://codex.wordpress.org/Function_Reference">built-in WordPress function</a>, that returns an array  of objects for all of our blog&#8217;s pages.</p>
<pre class="brush: php;">$key = 'NavMenu';</pre>
<p>Here we set the <em>$key</em> variable to <em>&#8220;NavMenu&#8221;</em> for use in the get_post_meta function below.</p>
<pre class="brush: php;">$pageIDs = array();</pre>
<p>Next we initialize the $pageIDs array, which will hold the page IDs for the pages that have our custom field attached.</p>
<pre class="brush: php;">foreach($pages as $page) {</pre>
<p>Simple <em>for-each</em> loop.</p>
<pre class="brush: php;">if(strtolower(get_post_meta($page-&gt;ID, $key, true)) == 'yes')
$pageIDs[] = $page-&gt;ID;</pre>
<p>The first line uses the <em>get_post_meta()</em> built-in WordPress function. This function takes as parameters 1) a page ID, and 2) a custom field Key, which in our case is <em>&#8220;NavMenu&#8221;</em>. The third parameter is true to tell the function to return a string of the first occurrence instead of an array of all occurrences of <em>Key</em>. Then we stick that function inside an if-statement to determine if a custom field we&#8217;re looking for exists, and we check to see that the custom field contains the value &#8216;yes&#8217;. <em><strong>strtolower()</strong></em> simply converts the string to lowercase just in case you enter something other than all lower case when setting the custom field for the page.</p>
<p>If that custom field exists, the second line adds the page ID to our $pageIDs array.</p>
<p>Then the foreach loop continues on to the next page.</p>
<pre class="brush: php;">$pageIDList = implode(',', $pageIDs);</pre>
<p>This takes our $pageIDs array with all the page ID numbers of the pages marked with our custom field and strings them all together separated by commas using PHP&#8217;s <a href="http://us3.php.net/implode">implode()</a> function.. This is so they&#8217;re in a format like 2,5,7,10,32 for the following line of code&#8230;</p>
<pre class="brush: php;">wp_list_pages('include=' . $pageIDList . '&amp;title_li=');</pre>
<p><a href="http://codex.wordpress.org/Template_Tags/wp_list_pages">wp_list_pages()</a> is another built-in WordPress function, which, in this case, takes as parameters 1) a comma-separated list of page ID numbers, which we set up in the last step and 2) <em>&amp;title_li=</em>, which tells WordPress not to return a title for the list of pages. The first parameter is a comma-separated list of page ID numbers that we set up in the previous step.</p>
<h2>Conclusion</h2>
<p>Now that wasn&#8217;t too tough was it? Now you know how to set up WordPress to automatically create a navigation menu from pages tagged with a specific custom field. We&#8217;ve also lightly touched on creating a new function and using the built-in WordPress functions, <a href="http://codex.wordpress.org/Function_Reference">get_pages()</a>, <a href="http://codex.wordpress.org/Function_Reference/get_post_meta">get_post_meta()</a>, and <a href="http://codex.wordpress.org/Template_Tags/wp_list_pages">wp_list_pages()</a>, as well as the php <a href="http://us3.php.net/implode">implode()</a> function.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rlmseo.com/blog/auto-create-navigation-menu/feed/</wfw:commentRss>
		<slash:comments>67</slash:comments>
		</item>
	</channel>
</rss>
