<?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: Creating two menus</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Wed, 19 Jun 2013 06:41:24 +0000</pubDate>

<item>
<title>kbkisan on "Creating two menus"</title>
<link>http://themeshaper.com/forums/topic/creating-two-menus#post-7602</link>
<pubDate>Mon, 02 Nov 2009 00:53:41 +0000</pubDate>
<dc:creator>kbkisan</dc:creator>
<guid isPermaLink="false">7602@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Figured it out, using CSS Edit to see what styles the footer items were receiving. Thanks so much for your help Chris !
&#60;/p&#62;</description>
</item>
<item>
<title>kbkisan on "Creating two menus"</title>
<link>http://themeshaper.com/forums/topic/creating-two-menus#post-7600</link>
<pubDate>Mon, 02 Nov 2009 00:33:30 +0000</pubDate>
<dc:creator>kbkisan</dc:creator>
<guid isPermaLink="false">7600@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I think I managed to add the footer but the problem is that it gets styled like the top menu even though I put in the id=&#34;footer&#34;&#60;/p&#62;
&#60;p&#62;This is my new code, I removed everything I posted here above and put in this new code without the remove function.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function footer_access() { ?&#38;gt;
		&#38;lt;div id=&#38;quot;footer&#38;quot;&#38;gt;
			&#38;lt;?php wp_page_menu(&#38;#39;sort_column=menu_order&#38;#38;include=31&#38;#39;) ?&#38;gt;
		&#38;lt;/div&#38;gt;
	&#38;lt;?php
}
add_action(&#38;#39;thematic_abovefooter&#38;#39;,&#38;#39;footer_access&#38;#39;,9);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>kbkisan on "Creating two menus"</title>
<link>http://themeshaper.com/forums/topic/creating-two-menus#post-7599</link>
<pubDate>Mon, 02 Nov 2009 00:14:31 +0000</pubDate>
<dc:creator>kbkisan</dc:creator>
<guid isPermaLink="false">7599@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Chris and thanks for your quick reply. I have already implemented my top menu thanks to you, but since I am not yet too familiar with php and the code Thematic I can't manage to repeat the step for the footer :&#124;&#60;/p&#62;
&#60;p&#62;This is what I added in my attempt to remove the footer and put my own.&#60;/p&#62;
&#60;p&#62;function remove_menu() {&#60;br /&#62;
	remove_action('thematic_footer','thematic_access',9);&#60;br /&#62;
}&#60;br /&#62;
add_action('init', 'remove_menu');&#60;/p&#62;
&#60;p&#62;function footer_access() { ?&#38;gt;&#60;br /&#62;
	&#38;lt;div id=&#34;footer&#34;&#38;gt;&#60;br /&#62;
		&#38;lt;div id=&#34;siteinfo&#34;&#38;gt;&#60;br /&#62;
			&#38;lt;?php wp_page_menu('sort_column=menu_order&#38;#38;include=31') ?&#38;gt;&#60;br /&#62;
		&#38;lt;/div&#38;gt;&#60;br /&#62;
	&#38;lt;/div&#38;gt;&#38;lt;!-- #footer --&#38;gt;&#60;br /&#62;
	&#38;lt;?php&#60;br /&#62;
}&#60;br /&#62;
add_action('thematic_abovefooter','footer_access',9);&#60;/p&#62;
&#60;p&#62;?&#38;gt;&#60;/p&#62;
&#60;p&#62;I know I am probably doing something silly.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Fannar
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Creating two menus"</title>
<link>http://themeshaper.com/forums/topic/creating-two-menus#post-7595</link>
<pubDate>Sun, 01 Nov 2009 22:47:38 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">7595@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Fannar,&#60;/p&#62;
&#60;p&#62;first you need to remove the original top menu:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function remove_menu() {
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_access&#38;#39;,9);
}
add_action(&#38;#39;init&#38;#39;, &#38;#39;remove_menu&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and then you create a new one:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function top_access() { ?&#38;gt;
	&#38;lt;div id=&#38;quot;access&#38;quot;&#38;gt;
		&#38;lt;div class=&#38;quot;skip-link&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;#content&#38;quot; title=&#38;quot;&#38;lt;?php _e(&#38;#39;Skip navigation to the content&#38;#39;, &#38;#39;thematic&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php _e(&#38;#39;Skip to content&#38;#39;, &#38;#39;thematic&#38;#39;); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;
			&#38;lt;?php wp_page_menu(&#38;#39;sort_column=menu_order&#38;#38;include=2,173,336&#38;#39;) ?&#38;gt;
	&#38;lt;/div&#38;gt;&#38;lt;!-- #access --&#38;gt;
	&#38;lt;?php
}
add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;top_access&#38;#39;,9);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The important part is the parameter &#60;code&#62;include=2,173,336&#60;/code&#62;. You need to adjust the page IDs. You need to enter all IDs that should be listed in the top menu.&#60;/p&#62;
&#60;p&#62;The footer menu would be similar .. copy the function with a different name 'footer_access' or so and connect it to thematic_abovefooter().&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>kbkisan on "Creating two menus"</title>
<link>http://themeshaper.com/forums/topic/creating-two-menus#post-7592</link>
<pubDate>Sun, 01 Nov 2009 17:51:29 +0000</pubDate>
<dc:creator>kbkisan</dc:creator>
<guid isPermaLink="false">7592@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi there, I'm hoping someone out there can help me with a problem I am trying to solve.&#60;/p&#62;
&#60;p&#62;Here is the thing... I am using the Thematic theme and I wanted to adjust a few thing so it better suits my needs.&#60;br /&#62;
I'm trying to create two menus, one being the standard top menu and the other being a menu in the footer.&#60;/p&#62;
&#60;p&#62;So let's say I have created 8 pages and I want links to 4 of them to appear in the top main menu, links to 3 of them to appear in the footer menu and 1 not to appear in any menu since it would be a static homepage that I link to using the logo in the header.&#60;/p&#62;
&#60;p&#62;I have been looking around in the forums and I haven't found anything that I could get to work, so any input you could give me would be greatly appreciated.&#60;/p&#62;
&#60;p&#62;Thanks in advance,&#60;br /&#62;
Fannar
&#60;/p&#62;</description>
</item>

</channel>
</rss>
