<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Topic: Multiple Menus with Thematic</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Fri, 24 May 2013 00:19:59 +0000</pubDate>

<item>
<title>helgatheviking on "Multiple Menus with Thematic"</title>
<link>http://themeshaper.com/forums/topic/multiple-menus-with-thematic#post-26467</link>
<pubDate>Thu, 19 Apr 2012 18:22:56 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26467@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;yeah i would prefer there to be a hook to add something above the sidebar that was independent of whether the sidebar is active, but at the moment, there isn't
&#60;/p&#62;</description>
</item>
<item>
<title>stepintheterrain on "Multiple Menus with Thematic"</title>
<link>http://themeshaper.com/forums/topic/multiple-menus-with-thematic#post-26466</link>
<pubDate>Thu, 19 Apr 2012 17:29:35 +0000</pubDate>
<dc:creator>stepintheterrain</dc:creator>
<guid isPermaLink="false">26466@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;thank you, I was using a modified version of what you had in part 5.  But I switched to the full page template &#38;#38; that explains why the code was not working since I had no abovemainasides for it to show up.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Multiple Menus with Thematic"</title>
<link>http://themeshaper.com/forums/topic/multiple-menus-with-thematic#post-26461</link>
<pubDate>Thu, 19 Apr 2012 15:26:14 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26461@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;it's right there in part 5.  you have to add wp_nav_menu() to a hook.  (or you could add them via widget)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;///Sidemenus
function kia_sidebar_menus() {

   if ( has_nav_menu( &#38;#39;sidebar-menu&#38;#39; ) ) {
	wp_nav_menu( array( &#38;#39;theme_location&#38;#39; =&#38;gt; &#38;#39;sidebar-menu&#38;#39; ) );

    }

   if ( has_nav_menu( &#38;#39;sidebar-menu-2&#38;#39; ) ) {
	wp_nav_menu( array( &#38;#39;theme_location&#38;#39; =&#38;gt; &#38;#39;sidebar-menu-2&#38;#39; ) );

    }

   if ( has_nav_menu( &#38;#39;sidebar-menu-3&#38;#39; ) ) {
	wp_nav_menu( array( &#38;#39;theme_location&#38;#39; =&#38;gt; &#38;#39;sidebar-menu-3&#38;#39; ) );

    }
}

add_action(&#38;#39;thematic_abovemainasides&#38;#39;,&#38;#39;kia_sidebar_menus&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>stepintheterrain on "Multiple Menus with Thematic"</title>
<link>http://themeshaper.com/forums/topic/multiple-menus-with-thematic#post-26456</link>
<pubDate>Thu, 19 Apr 2012 13:17:48 +0000</pubDate>
<dc:creator>stepintheterrain</dc:creator>
<guid isPermaLink="false">26456@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I registered all the menus &#38;#38; they are showing up fine in wordpress.  What I did not see was how I can choose one of those menus to show up at the top of the page &#38;#38; then the other 3 on the left side one by one.  Keeping in mine that I would use different styles so that the top menu is styled differently then the 3 left menus.  Below is what my functions.php currently looks like:&#60;/p&#62;
&#60;p&#62;// Remove default Thematic actions&#60;br /&#62;
function remove_thematic_actions() {&#60;br /&#62;
    remove_action('thematic_header','thematic_access',9);&#60;br /&#62;
}&#60;br /&#62;
add_action('init','remove_thematic_actions');&#60;/p&#62;
&#60;p&#62;// and then add the access div to the hook you want&#60;br /&#62;
add_action('thematic_aboveheader','thematic_access');&#60;/p&#62;
&#60;p&#62;function remove_blogtitle()&#60;br /&#62;
{&#60;br /&#62;
   remove_action('thematic_header', 'thematic_blogtitle', 3);&#60;br /&#62;
}&#60;br /&#62;
add_action('init', 'remove_blogtitle');&#60;/p&#62;
&#60;p&#62;// Register the new menus&#60;br /&#62;
function register_my_menus() {&#60;br /&#62;
	register_nav_menus(&#60;br /&#62;
		array(&#60;br /&#62;
			'primary-menu' =&#38;gt; __( 'Header Menu' ),&#60;br /&#62;
			'sidebar-menu' =&#38;gt; __( 'Sidebar Menu' ),&#60;br /&#62;
			'sidebar-menu-2' =&#38;gt; __( 'Sidebar Menu 2' ),&#60;br /&#62;
			'sidebar-menu-3' =&#38;gt; __( 'Sidebar Menu 3' ),&#60;/p&#62;
&#60;p&#62;		)&#60;br /&#62;
	);&#60;br /&#62;
}&#60;br /&#62;
add_action( 'init', 'register_my_menus' );
&#60;/p&#62;</description>
</item>
<item>
<title>stepintheterrain on "Multiple Menus with Thematic"</title>
<link>http://themeshaper.com/forums/topic/multiple-menus-with-thematic#post-26375</link>
<pubDate>Mon, 16 Apr 2012 21:05:58 +0000</pubDate>
<dc:creator>stepintheterrain</dc:creator>
<guid isPermaLink="false">26375@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;thank you!  I was actually reading that post earlier (very well done).  I saw section 5 but was not completely sure if it applied to what I was looking for.  But sounds like it is now, so I will check it out, thank you.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Multiple Menus with Thematic"</title>
<link>http://themeshaper.com/forums/topic/multiple-menus-with-thematic#post-26373</link>
<pubDate>Mon, 16 Apr 2012 20:22:29 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26373@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;read the sticky:&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/thematic-menus-demystified-1#post-15282&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/thematic-menus-demystified-1#post-15282&#60;/a&#62;&#60;br /&#62;
part 5 specifically
&#60;/p&#62;</description>
</item>
<item>
<title>stepintheterrain on "Multiple Menus with Thematic"</title>
<link>http://themeshaper.com/forums/topic/multiple-menus-with-thematic#post-26372</link>
<pubDate>Mon, 16 Apr 2012 20:09:32 +0000</pubDate>
<dc:creator>stepintheterrain</dc:creator>
<guid isPermaLink="false">26372@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have been looking around at different posts &#38;#38; not quite sure I found what I am looking for.  In the event that there was already a post about this I apologize.&#60;/p&#62;
&#60;p&#62;What I am looking to do:&#60;br /&#62;
Header attached to top of the page (already done) using the wordpress menu system and has the branding logo (already done) on the left of the header links (any thoughts how to do this part?)&#60;/p&#62;
&#60;p&#62;In addition I would like to use the wordpress menu system to put at least 1 more menu down the left side of the page.  Any potentially up to 3 menus down the left side of the page, 1 above the other.  I am fully aware that I will have to style this with css &#38;#38; can do that.  I just was not sure what the functions are that are required in order to add at least 1 menu &#38;#38; maybe multiple down the left side of the page.&#60;/p&#62;
&#60;p&#62;Any help on this would be great.  And if you need additional information let me know.  Thank you!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
