<?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: adding categories to naviagation</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Fri, 24 May 2013 20:05:14 +0000</pubDate>

<item>
<title>em hr on "adding categories to naviagation"</title>
<link>http://themeshaper.com/forums/topic/adding-categories-to-naviagation#post-13297</link>
<pubDate>Tue, 22 Jun 2010 15:20:08 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">13297@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm not realy understanding if you've solved your problem or not.&#60;/p&#62;
&#60;p&#62;Does either function action or filter accomplish you goal?
&#60;/p&#62;</description>
</item>
<item>
<title>greenandi on "adding categories to naviagation"</title>
<link>http://themeshaper.com/forums/topic/adding-categories-to-naviagation#post-13292</link>
<pubDate>Tue, 22 Jun 2010 14:32:17 +0000</pubDate>
<dc:creator>greenandi</dc:creator>
<guid isPermaLink="false">13292@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;using function filter - again, from Devin&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function add_childtheme_category_menu($args) {
	$categories = wp_list_categories(&#38;#39;exclude=1&#38;#38;title_li=&#38;#38;echo=0&#38;#39;);
	$args .= $categories . &#38;#39;&#38;#39;;
	return $args;
	}

add_filter(&#38;#39;wp_list_pages&#38;#39;, &#38;#39;add_childtheme_category_menu&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;more about menu navigation&#60;br /&#62;
&#60;a href=&#34;http://wptheming.com/2009/11/filter-menus-in-thematic/&#34; rel=&#34;nofollow&#34;&#62;http://wptheming.com/2009/11/filter-menus-in-thematic/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;i'm still not to sure which one should i use...&#60;br /&#62;
i just wanted to add the categories drop down list to the navigation menu with out editing the original thematic codes, re-create/re-place the codes using action function.&#60;br /&#62;
both functions are works well. but for me, the action function is stable with complete control for showing or hiding the pages.
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "adding categories to naviagation"</title>
<link>http://themeshaper.com/forums/topic/adding-categories-to-naviagation#post-13269</link>
<pubDate>Mon, 21 Jun 2010 19:23:58 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">13269@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;:) I'm glad you worked it out thanks for taking the time to come back and share your solution.
&#60;/p&#62;</description>
</item>
<item>
<title>greenandi on "adding categories to naviagation"</title>
<link>http://themeshaper.com/forums/topic/adding-categories-to-naviagation#post-13262</link>
<pubDate>Mon, 21 Jun 2010 15:15:19 +0000</pubDate>
<dc:creator>greenandi</dc:creator>
<guid isPermaLink="false">13262@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i did this, and thanks again Devin for the tips and the custom function - action&#60;/p&#62;
&#60;p&#62;i guessed i have to use custom function&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;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;#39;); ?&#38;gt;
                &#38;lt;?php wp_list_categories(&#38;#39;exclude=1&#38;#38;title_li=&#38;#39;); ?&#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;</description>
</item>
<item>
<title>greenandi on "adding categories to naviagation"</title>
<link>http://themeshaper.com/forums/topic/adding-categories-to-naviagation#post-13260</link>
<pubDate>Mon, 21 Jun 2010 14:19:07 +0000</pubDate>
<dc:creator>greenandi</dc:creator>
<guid isPermaLink="false">13260@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I found this, posted by Devin (http://themeshaper.com/forums/profile/devin - &#60;a href=&#34;http://wptheming.com/&#34; rel=&#34;nofollow&#34;&#62;http://wptheming.com/&#60;/a&#62;)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function add_childtheme_category_menu($args) {
	$categories = wp_list_categories(&#38;#39;orderby=id&#38;#38;use_desc_for_title=0&#38;#38;child_of=13&#38;#39;);
	$args .= $categories . &#38;#39;&#38;#39;;
	return $args;
	}

add_filter(&#38;#39;wp_list_pages&#38;#39;,&#38;#39;add_childtheme_category_menu&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;this works great but &#60;code&#62;&#38;lt;li class=categories&#38;gt; shown above the &#38;lt;div class=menu&#38;gt;&#60;/code&#62;.&#60;/p&#62;
&#60;p&#62;does anyone how to make it works perfectly ?&#60;br /&#62;
cheers!
&#60;/p&#62;</description>
</item>
<item>
<title>greenandi on "adding categories to naviagation"</title>
<link>http://themeshaper.com/forums/topic/adding-categories-to-naviagation#post-13259</link>
<pubDate>Mon, 21 Jun 2010 14:05:09 +0000</pubDate>
<dc:creator>greenandi</dc:creator>
<guid isPermaLink="false">13259@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;hi team!&#60;/p&#62;
&#60;p&#62;does anyone know how to add categories list - this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php wp_list_categories(&#38;#39;orderby=id&#38;#38;use_desc_for_title=0&#38;#38;child_of=13&#38;#39;); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to the navigation, without editing or inset the wp's php code to the thematic's header-extension.php&#60;/p&#62;
&#60;p&#62;I wanted the 'categories link' as an 'li' tag, inside and part of div class:menu and ul class: sf-menu sf-js-enabled.&#60;/p&#62;
&#60;p&#62;i've been search every article about this, i found that some of them re-create/re-place the thematic_access default with their own using action function.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
