<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Usable Category Navigation in Wordpress Pages</title>
	<atom:link href="http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/</link>
	<description>Tips and Commentary on Web Accessibility, Usability, and Search Marketing best practices.</description>
	<pubDate>Sun, 12 Oct 2008 19:35:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>By: Joe Dolson</title>
		<link>http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23919</link>
		<dc:creator>Joe Dolson</dc:creator>
		<pubDate>Sat, 05 Apr 2008 19:01:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23919</guid>
		<description>It is nice working with software with a supportive community. Definitely one of the big advantages to open source software!

Hope it works for you!

I've also revised the code above - it may be easier for you to cut and paste (and read) now. ;)</description>
		<content:encoded><![CDATA[<p>It is nice working with software with a supportive community. Definitely one of the big advantages to open source software!</p>
<p>Hope it works for you!</p>
<p>I&#8217;ve also revised the code above - it may be easier for you to cut and paste (and read) now.&nbsp;;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carolyn Phillips</title>
		<link>http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23918</link>
		<dc:creator>Carolyn Phillips</dc:creator>
		<pubDate>Sat, 05 Apr 2008 03:33:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23918</guid>
		<description>Thanks, Joe!  I'll try it now.  What I like most about those of us who work with WordPress is we seem to be forming a community.  It means so much to me that you explain your code and try to help figure out what's happening when some newbie screws it up :)  I'll let you know how it goes!</description>
		<content:encoded><![CDATA[<p>Thanks, Joe!  I&#8217;ll try it now.  What I like most about those of us who work with WordPress is we seem to be forming a community.  It means so much to me that you explain your code and try to help figure out what&#8217;s happening when some newbie screws it up <img src='http://www.joedolson.com/articles/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;ll let you know how it&nbsp;goes!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Dolson</title>
		<link>http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23916</link>
		<dc:creator>Joe Dolson</dc:creator>
		<pubDate>Fri, 04 Apr 2008 15:39:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23916</guid>
		<description>What you're describing sounds a lot like a silent PHP failure, which suggests that there's an error in the code somewhere: a missing quote, a missing final curly brace (}) or something to that effect. 

It's hard to be sure, of course, without actually seeing your code...but I suggest giving a close look to the format of the code and searching for any missing pieces. Also, you may want to try changing this section:

&lt;code&gt;
if(get_the_title($post-&#62;post_parent) != the_title(’ ‘ , ‘ ‘,false))
&lt;/code&gt;
 
to this:

&lt;code&gt;
if(get_the_title($post-&#62;post_parent) != the_title('','',false))
&lt;/code&gt;

The only change is in the removal of smart quotes in the_title()'s parameters &lt;em&gt;and&lt;/em&gt; the removal of the empty space in the middle, which I've found makes a difference in some versions of WP.</description>
		<content:encoded><![CDATA[<p>What you&#8217;re describing sounds a lot like a silent <acronym title="Hypertext PreProcessing">PHP</acronym> failure, which suggests that there&#8217;s an error in the code somewhere: a missing quote, a missing final curly brace (}) or something to that effect. </p>
<p>It&#8217;s hard to be sure, of course, without actually seeing your code&#8230;but I suggest giving a close look to the format of the code and searching for any missing pieces. Also, you may want to try changing this section:</p>
<p><code><br />
if(get_the_title($post-&gt;post_parent) != the_title(’ ‘ , ‘ ‘,false))<br />
</code></p>
<p>to this:</p>
<p><code><br />
if(get_the_title($post-&gt;post_parent) != the_title('','',false))<br />
</code></p>
<p>The only change is in the removal of smart quotes in the_title()&#8217;s parameters <em>and</em> the removal of the empty space in the middle, which I&#8217;ve found makes a difference in some versions of&nbsp;WP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carolyn Phillips</title>
		<link>http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23915</link>
		<dc:creator>Carolyn Phillips</dc:creator>
		<pubDate>Fri, 04 Apr 2008 06:07:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23915</guid>
		<description>Hi Joe,
I thought you saved my life.  Your solution is EXACTLY what I need, only I can't get it to work.  I'm a newbie, so I'm sure it's me and not your most excellent code.  When I put in your code, replace smart quotes with straight ones, still nothing shows up beneath the header.  I thought it was my theme so I tried it on a different sidebar and the sidebars disappeared, not everything below the header as it does on mine.  Maybe I'm placing it incorrectly?</description>
		<content:encoded><![CDATA[<p>Hi Joe,<br />
I thought you saved my life.  Your solution is EXACTLY what I need, only I can&#8217;t get it to work.  I&#8217;m a newbie, so I&#8217;m sure it&#8217;s me and not your most excellent code.  When I put in your code, replace smart quotes with straight ones, still nothing shows up beneath the header.  I thought it was my theme so I tried it on a different sidebar and the sidebars disappeared, not everything below the header as it does on mine.  Maybe I&#8217;m placing it&nbsp;incorrectly?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Dolson</title>
		<link>http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23898</link>
		<dc:creator>Joe Dolson</dc:creator>
		<pubDate>Fri, 21 Mar 2008 17:15:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23898</guid>
		<description>All right, Jason - If you were using WP Pages, then I think that this scripting would be, in fact, what you're looking for. What you're describing seems to be almost exactly what I was doing when I figured this out, in fact. 

However, if (as you describe) the categories in your navigational menu are actually blogging categories --- posting groups in the blog --- then you've got a different issue. 

What you'll probably want to do is use the &lt;a href="http://rmarsh.com/plugins/recent-posts/"&gt;Recent Posts&lt;/a&gt; plugin to generate a list of posts in the sidebar. It has an option called "match_cats" which you can use to generate a list of posts which match the category of the currently active post. I think it'll also work with the currently active category; although you'll have to try it, first.

Good luck!</description>
		<content:encoded><![CDATA[<p>All right, Jason - If you were using WP Pages, then I think that this scripting would be, in fact, what you&#8217;re looking for. What you&#8217;re describing seems to be almost exactly what I was doing when I figured this out, in fact. </p>
<p>However, if (as you describe) the categories in your navigational menu are actually blogging categories&thinsp;&#8212;&thinsp;- posting groups in the blog&thinsp;&#8212;&thinsp;- then you&#8217;ve got a different issue. </p>
<p>What you&#8217;ll probably want to do is use the <a href="http://rmarsh.com/plugins/recent-posts/">Recent Posts</a> plugin to generate a list of posts in the sidebar. It has an option called &#8220;match_cats&#8221; which you can use to generate a list of posts which match the category of the currently active post. I think it&#8217;ll also work with the currently active category; although you&#8217;ll have to try it, first.</p>
<p>Good&nbsp;luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Dolson</title>
		<link>http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23897</link>
		<dc:creator>Joe Dolson</dc:creator>
		<pubDate>Fri, 21 Mar 2008 03:24:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23897</guid>
		<description>Hi, Jason - sorry to get back to you so late, but your comment got pegged as spam by Akismet. I don't have the time to answer your question right this moment, but I promise I'll be back tomorrow!</description>
		<content:encoded><![CDATA[<p>Hi, Jason - sorry to get back to you so late, but your comment got pegged as spam by Akismet. I don&#8217;t have the time to answer your question right this moment, but I promise I&#8217;ll be back&nbsp;tomorrow!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23894</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 19 Mar 2008 04:36:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23894</guid>
		<description>Joe, I guess I'm not understanding this. I don't see where I'm supposed to drop this code exactly. Frankly I'm not sure if this is what I need.

Please let me explain...

Basically I'm trying to create a news/blog site using wp as a CMS. I have 8 main blogging categories set up on a horizontal menu beneath the header. I'd also like to include a verticle menu on the left hand side for "Featured Content" (ie. content that could be changing from week to week). I have not decided if I should be using the category, pages or links function for this specific list. It's a sports site so over the next month my desired featured content menu might go as follows:

(Sample Home Page Menu)
FEATURED CONTENT
-2008 NFL Draft
-NCAA Final Four
-NBA PlayOff Hunt

When the user clicks on "2008 NFL Draft" i would like to send them to the "2008 NFL DRAFT" page. The "FEATURED CONTENT" menu should morph into the "2008 NFL DRAFT" menu and look like so...

(Sample "2008 NFL DRAFT" Page Menu)
2008 NFL DRAFT
-NFL Mock Drafts
-College Prospects
-Rumers &#38; Speculation

Now lets say the user clicks on "College Prospects"...What was the "2008 NFL DRAFT" menu should morph into the "COLLEGE PROSPECTS" menu and look like so...

(Sample "COLLEGE PROSPECTS" Page Menu)
COLLEGE PROSPECTS
-Quarterbacks
-Runningbacks
-Offensive Linemen
-Tight Ends
-Defensive Linemen
-Linebackers
-Defensive Backs

I don't mean to get into obnoxious detail. I just want to make sure I'm very clear about what I'm looking for. I would greatly appreciate any help our direction on this problem as it has been killing me for weeks now!

Thanks Much</description>
		<content:encoded><![CDATA[<p>Joe, I guess I&#8217;m not understanding this. I don&#8217;t see where I&#8217;m supposed to drop this code exactly. Frankly I&#8217;m not sure if this is what I need.</p>
<p>Please let me explain&#8230;</p>
<p>Basically I&#8217;m trying to create a news/blog site using wp as a <acronym title="Content Management System">CMS</acronym>. I have 8 main blogging categories set up on a horizontal menu beneath the header. I&#8217;d also like to include a verticle menu on the left hand side for &#8220;Featured Content&#8221; (<acronym title="Internet Explorer">IE</acronym>. content that could be changing from week to week). I have not decided if I should be using the category, pages or links function for this specific list. It&#8217;s a sports site so over the next month my desired featured content menu might go as follows:</p>
<p>(Sample Home Page Menu)<br />
FEATURED CONTENT<br />
-2008 NFL Draft<br />
-NCAA Final Four<br />
-NBA PlayOff Hunt</p>
<p>When the user clicks on &#8220;2008 NFL Draft&#8221; i would like to send them to the &#8220;2008 NFL DRAFT&#8221; page. The &#8220;FEATURED CONTENT&#8221; menu should morph into the &#8220;2008 NFL DRAFT&#8221; menu and look like so&#8230;</p>
<p>(Sample &#8220;2008 NFL DRAFT&#8221; Page Menu)<br />
2008 NFL DRAFT<br />
-NFL Mock Drafts<br />
-College Prospects<br />
-Rumers <span class="amp">&amp;</span> Speculation</p>
<p>Now lets say the user clicks on &#8220;College Prospects&#8221;&#8230;What was the &#8220;2008 NFL DRAFT&#8221; menu should morph into the &#8220;COLLEGE PROSPECTS&#8221; menu and look like so&#8230;</p>
<p>(Sample &#8220;COLLEGE PROSPECTS&#8221; Page Menu)<br />
COLLEGE PROSPECTS<br />
-Quarterbacks<br />
-Runningbacks<br />
-Offensive Linemen<br />
-Tight Ends<br />
-Defensive Linemen<br />
-Linebackers<br />
-Defensive Backs</p>
<p>I don&#8217;t mean to get into obnoxious detail. I just want to make sure I&#8217;m very clear about what I&#8217;m looking for. I would greatly appreciate any help our direction on this problem as it has been killing me for weeks now!</p>
<p>Thanks&nbsp;Much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Dolson</title>
		<link>http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23288</link>
		<dc:creator>Joe Dolson</dc:creator>
		<pubDate>Fri, 30 Nov 2007 16:06:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23288</guid>
		<description>Cool. Glad that worked out for you!</description>
		<content:encoded><![CDATA[<p>Cool. Glad that worked out for&nbsp;you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Issy</title>
		<link>http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23287</link>
		<dc:creator>Issy</dc:creator>
		<pubDate>Fri, 30 Nov 2007 05:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23287</guid>
		<description>Joe,
You are the man.
It worked like a charm. You have no idea how long I've been looking for this solution. :)

Thanks a lot for all your help.

Happy coding.

Gracias...</description>
		<content:encoded><![CDATA[<p>Joe,<br />
You are the man.<br />
It worked like a charm. You have no idea how long I&#8217;ve been looking for this solution. <img src='http://www.joedolson.com/articles/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks a lot for all your help.</p>
<p>Happy coding.&nbsp;Gracias&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Dolson</title>
		<link>http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23285</link>
		<dc:creator>Joe Dolson</dc:creator>
		<pubDate>Thu, 29 Nov 2007 23:21:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.joedolson.com/articles/2007/02/usable-category-navigation-in-wordpress-pages/#comment-23285</guid>
		<description>Well, for a flyout-type menu you don't really need the scripting in this article --- all you really need to do is make use of the standard &lt;code&gt;wp_list_pages()&lt;/code&gt; function and then write CSS styles to generate the flyout menu. 

The code in this article is really designed for a contextually variable navigation menu, so that the relevant pages only show up when you need them. 

You will need to use something like this:

&lt;code&gt;
&#60;ul class="adxm menu"&#62;
&lt;?php
wp_list_pages('sort_column=menu_order&#038;title_li=');
?&gt;
&#60;/ul&#62;
&lt;/code&gt;

...in order to make use of the styles. But it should be basically plug'n'play, I think.</description>
		<content:encoded><![CDATA[<p>Well, for a flyout-type menu you don&#8217;t really need the scripting in this article&thinsp;&#8212;&thinsp;- all you really need to do is make use of the standard <code>wp_list_pages()</code> function and then write <acronym title="Cascading Style Sheets">CSS</acronym> styles to generate the flyout menu. </p>
<p>The code in this article is really designed for a contextually variable navigation menu, so that the relevant pages only show up when you need them. </p>
<p>You will need to use something like this:</p>
<p><code><br />
&lt;ul class="adxm menu"&gt;<br />
< ?php<br />
wp_list_pages('sort_column=menu_order&#038;title_li=');<br />
?><br />
&lt;/ul&gt;<br />
</code></p>
<p>&#8230;in order to make use of the styles. But it should be basically plug&#8217;n&#8217;play, I&nbsp;think.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
