<?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 User Favorites: jasonelston</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sat, 25 May 2013 03:32:45 +0000</pubDate>

<item>
<title>roycreative on "How do you limit menu depth?"</title>
<link>http://themeshaper.com/forums/topic/how-do-you-limit-menu-depth#post-10769</link>
<pubDate>Wed, 17 Mar 2010 01:49:59 +0000</pubDate>
<dc:creator>roycreative</dc:creator>
<guid isPermaLink="false">10769@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I want to prevent pages with a parent category from showing up in my navigation. In a normal theme, I would just put this in the header. &#60;/p&#62;
&#60;p&#62;&#38;lt;?php wp_list_pages(depth=1); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;I guess I have yet to understand why Thematic doesn't give us the same access to that code. This is not easier.
&#60;/p&#62;</description>
</item>
<item>
<title>ashfame on "How do you limit menu depth?"</title>
<link>http://themeshaper.com/forums/topic/how-do-you-limit-menu-depth#post-10665</link>
<pubDate>Thu, 11 Mar 2010 13:52:12 +0000</pubDate>
<dc:creator>ashfame</dc:creator>
<guid isPermaLink="false">10665@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Its not even generated. Anyways I got it working by custom php code through IDs
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "How do you limit menu depth?"</title>
<link>http://themeshaper.com/forums/topic/how-do-you-limit-menu-depth#post-10643</link>
<pubDate>Wed, 10 Mar 2010 17:22:05 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">10643@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Have you looked at the source code to see if the list depth is there but CSS is hiding it somehow?
&#60;/p&#62;</description>
</item>
<item>
<title>ashfame on "How do you limit menu depth?"</title>
<link>http://themeshaper.com/forums/topic/how-do-you-limit-menu-depth#post-10641</link>
<pubDate>Wed, 10 Mar 2010 16:56:21 +0000</pubDate>
<dc:creator>ashfame</dc:creator>
<guid isPermaLink="false">10641@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;any updates?
&#60;/p&#62;</description>
</item>
<item>
<title>ashfame on "How do you limit menu depth?"</title>
<link>http://themeshaper.com/forums/topic/how-do-you-limit-menu-depth#post-10475</link>
<pubDate>Fri, 05 Mar 2010 12:01:31 +0000</pubDate>
<dc:creator>ashfame</dc:creator>
<guid isPermaLink="false">10475@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have this code in my functions.php file&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// We will build our custom menu first

	// Remove the default Thematic Access
	function remove_thematic_actions() {
		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_thematic_actions&#38;#39;);

	// Recreate the Thematic Access with menu-primary and menu-secondary
	function childtheme_page_menu() { ?&#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;show_home=1&#38;#38;exclude=36,37,39,41,44,46,48&#38;#38;menu_class=menu menu-primary&#38;#39;); ?&#38;gt;
			&#38;lt;div class=&#38;quot;menu menu-secondary&#38;quot;&#38;gt;
				&#38;lt;ul&#38;gt;
					&#38;lt;!--&#38;lt;?php wp_list_pages(&#38;#39;title_li=&#38;#38;include=36,37&#38;#39;); ?&#38;gt; Can be removed from here --&#38;gt;
				&#38;lt;/ul&#38;gt;
			&#38;lt;/div&#38;gt;
		&#38;lt;/div&#38;gt;
	&#38;lt;?php }
	add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;childtheme_page_menu&#38;#39;,&#38;#39;9&#38;#39;);

	// Add a drop down sub menu
	function childtheme_category_menu() { ?&#38;gt;
		&#38;lt;div id=&#38;quot;category-access&#38;quot;&#38;gt;
			&#38;lt;div id=&#38;quot;category-menu&#38;quot; class=&#38;quot;menu&#38;quot;&#38;gt;
				&#38;lt;div class=&#38;quot;menu-title&#38;quot;&#38;gt;&#38;lt;?php _e(&#38;#39;&#38;#39;, &#38;#39;thematic&#38;#39;); ?&#38;gt;&#38;lt;/div&#38;gt;
				&#38;lt;ul id=&#38;quot;category-nav&#38;quot; class=&#38;quot;sf-menu&#38;quot;&#38;gt;
					&#38;lt;?php wp_list_pages(&#38;#39;include=36,37,39,48&#38;#38;title_li=&#38;#38;depth=2&#38;#39;); ?&#38;gt;
				&#38;lt;/ul&#38;gt;
			&#38;lt;/div&#38;gt;
		&#38;lt;/div&#38;gt;
	&#38;lt;?php }
	add_action(&#38;#39;thematic_belowheader&#38;#39;,&#38;#39;childtheme_category_menu&#38;#39;, 5);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The problem is that wp_list_pages is not generating nested lists. Specifying the depth argument has no effect on it.&#60;br /&#62;
Any ideas what might be interfering?&#60;/p&#62;
&#60;p&#62;P.S. - First day with Thematic
&#60;/p&#62;</description>
</item>
<item>
<title>buzztone on "How do you limit menu depth?"</title>
<link>http://themeshaper.com/forums/topic/how-do-you-limit-menu-depth#post-8089</link>
<pubDate>Thu, 26 Nov 2009 01:07:48 +0000</pubDate>
<dc:creator>buzztone</dc:creator>
<guid isPermaLink="false">8089@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Devin&#60;/p&#62;
&#60;p&#62;I found your &#60;a href=&#34;http://wordpresstheming.com/2009/11/filter-menus-in-thematic/&#34;&#62;Filter Menus in Thematic&#60;/a&#62; extremely helpful. Also &#60;a href=&#34;http://wordpresstheming.com/2009/10/useful-thematic-filters/&#34;&#62;&#60;br /&#62;
Useful Thematic Filters&#60;/a&#62; was great. Agree that &#34;the learning curve on Thematic is a bit steep if you’ve never used filters and hooks before&#34;. Please keep them coming.&#60;/p&#62;
&#60;p&#62;Neil
&#60;/p&#62;</description>
</item>
<item>
<title>jasonelston on "How do you limit menu depth?"</title>
<link>http://themeshaper.com/forums/topic/how-do-you-limit-menu-depth#post-8087</link>
<pubDate>Thu, 26 Nov 2009 00:23:51 +0000</pubDate>
<dc:creator>jasonelston</dc:creator>
<guid isPermaLink="false">8087@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Devin,&#60;/p&#62;
&#60;p&#62;Thanks for the info.  Worked like a charm!&#60;/p&#62;
&#60;p&#62;Jason
&#60;/p&#62;</description>
</item>
<item>
<title>Devin on "How do you limit menu depth?"</title>
<link>http://themeshaper.com/forums/topic/how-do-you-limit-menu-depth#post-8053</link>
<pubDate>Wed, 25 Nov 2009 07:16:40 +0000</pubDate>
<dc:creator>Devin</dc:creator>
<guid isPermaLink="false">8053@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Jason.  Try putting this in your child theme functions.php file:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//  Add a dynamic menu using wp_list_pages

function childtheme_menu() { ?&#38;gt;
     &#38;lt;div class=&#38;quot;menu&#38;quot;&#38;gt;
          &#38;lt;ul class=&#38;quot;sf-menu&#38;quot;&#38;gt;
                &#38;lt;?php wp_list_pages(&#38;#39;title_li=&#38;#38;depth=2&#38;#39;); ?&#38;gt;
          &#38;lt;/ul&#38;gt;
     &#38;lt;/div&#38;gt;
&#38;lt;?php }

add_action(&#38;#39;wp_page_menu&#38;#39;,&#38;#39;childtheme_menu&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The WordPress codex for this function is here: &#60;a href=&#34;http://codex.wordpress.org/Template_Tags/wp_list_pages&#34;&#62;http://codex.wordpress.org/Template_Tags/wp_list_pages&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;I wrote a post about filter functions for the menu on my site: &#60;a href=&#34;http://wordpresstheming.com/2009/11/filter-menus-in-thematic/&#34;&#62;http://wordpresstheming.com/2009/11/filter-menus-in-thematic/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>jasonelston on "How do you limit menu depth?"</title>
<link>http://themeshaper.com/forums/topic/how-do-you-limit-menu-depth#post-8052</link>
<pubDate>Wed, 25 Nov 2009 06:51:39 +0000</pubDate>
<dc:creator>jasonelston</dc:creator>
<guid isPermaLink="false">8052@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi, apologies if this question has been answered.  I've search but couldn't find a resolution, or whatever discussed was beyond my technical capability.&#60;/p&#62;
&#60;p&#62;Is there a way to restrict the depth of the menu in Thematic.  I only want to show the pages under the parent pages, not the next page down.&#60;/p&#62;
&#60;p&#62;About (Y)&#60;br /&#62;
--Blah page (Y)&#60;br /&#62;
----Blah page (N)&#60;/p&#62;
&#60;p&#62;I guess this means I just want to show two levels.&#60;/p&#62;
&#60;p&#62;Thanks in advance.&#60;/p&#62;
&#60;p&#62;Jason
&#60;/p&#62;</description>
</item>

</channel>
</rss>
