<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Frankie Jarrett</title>
	<atom:link href="http://frankiejarrett.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://frankiejarrett.com</link>
	<description>Theme designer. WordPress geek. Jesus freak.</description>
	<lastBuildDate>Wed, 15 Feb 2012 13:39:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on Create a dropdown of custom taxonomies in WordPress (the easy way) by Michael Weaver</title>
		<link>http://frankiejarrett.com/2011/09/create-a-dropdown-of-custom-taxonomies-in-wordpress-the-easy-way/#comment-68</link>
		<dc:creator>Michael Weaver</dc:creator>
		<pubDate>Wed, 15 Feb 2012 13:39:10 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=161#comment-68</guid>
		<description>Thanks bud,

just had a look at the second method, and it seemed to work perfectly until I tried the select all option, which in effect does work, it shows all &#039;posts&#039;. Im using this script for a custom post type archive page, attempting to show a dropdown menu of the custom taxonomies.

Here is the code thats in my archive page...

&lt;code&gt;&lt;/code&gt;

and here is the function...

&lt;pre&gt;
function custom_taxonomy_dropdown($taxonomy, $orderby, $order, $limit, $name, $show_option_all) {
	$args = array(
		&#039;orderby&#039; =&gt; $orderby,
		&#039;order&#039; =&gt; $order,
		&#039;number&#039; =&gt; $limit
	);
	$terms = get_terms($taxonomy, $args);
	echo &#039;&#039;;
	if($show_option_all) echo &#039;&#039;.$show_option_all.&#039;&#039;;
	if($show_option_none) echo &#039;&#039;.$show_option_none.&#039;&#039;;
	foreach ($terms as $term) {
		echo &#039;slug.&#039;&quot;&gt;&#039;.$term-&gt;name.&#039;&#039;;
	}
	echo &#039;&#039;;
}
&lt;/pre&gt;

The &lt;code&gt;value=&quot;0&quot;&lt;/code&gt; shows all the posts, but none of the custom post pages, all of the others work perfectly. Any ideas?

On a side note, someone asked about it submitting the form without a button, just add &lt;code&gt;onchange=&quot;this.form.submit();&quot;&lt;/code&gt; to the select element, works perfectly :D</description>
		<content:encoded><![CDATA[<p>Thanks bud,</p>
<p>just had a look at the second method, and it seemed to work perfectly until I tried the select all option, which in effect does work, it shows all &#8216;posts&#8217;. Im using this script for a custom post type archive page, attempting to show a dropdown menu of the custom taxonomies.</p>
<p>Here is the code thats in my archive page&#8230;</p>
<p><code></code></p>
<p>and here is the function&#8230;</p>
<pre>
function custom_taxonomy_dropdown($taxonomy, $orderby, $order, $limit, $name, $show_option_all) {
	$args = array(
		'orderby' =&gt; $orderby,
		'order' =&gt; $order,
		'number' =&gt; $limit
	);
	$terms = get_terms($taxonomy, $args);
	echo '';
	if($show_option_all) echo ''.$show_option_all.'';
	if($show_option_none) echo ''.$show_option_none.'';
	foreach ($terms as $term) {
		echo 'slug.'"&gt;'.$term-&gt;name.'';
	}
	echo '';
}
</pre>
<p>The <code>value="0"</code> shows all the posts, but none of the custom post pages, all of the others work perfectly. Any ideas?</p>
<p>On a side note, someone asked about it submitting the form without a button, just add <code>onchange="this.form.submit();"</code> to the select element, works perfectly <img src='http://frankiejarrett.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a dropdown of custom taxonomies in WordPress (the easy way) by Frankie</title>
		<link>http://frankiejarrett.com/2011/09/create-a-dropdown-of-custom-taxonomies-in-wordpress-the-easy-way/#comment-67</link>
		<dc:creator>Frankie</dc:creator>
		<pubDate>Tue, 14 Feb 2012 22:14:03 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=161#comment-67</guid>
		<description>Hey Michael, thanks for your comment.

The &lt;a href=&quot;http://codex.wordpress.org/Function_Reference/wp_dropdown_categories&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;&lt;code&gt;wp_dropdown_categories()&lt;/code&gt;&lt;/a&gt; function outputs &lt;code&gt;value=&quot;0&quot;&lt;/code&gt; for the &lt;code&gt;show_option_all&lt;/code&gt; argument, so this should work.

Have you tried the &lt;strong&gt;Expansions on Method #2&lt;/strong&gt; example above?

//Frankie</description>
		<content:encoded><![CDATA[<p>Hey Michael, thanks for your comment.</p>
<p>The <a href="http://codex.wordpress.org/Function_Reference/wp_dropdown_categories" target="_blank" rel="nofollow"><code>wp_dropdown_categories()</code></a> function outputs <code>value="0"</code> for the <code>show_option_all</code> argument, so this should work.</p>
<p>Have you tried the <strong>Expansions on Method #2</strong> example above?</p>
<p>//Frankie</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a dropdown of custom taxonomies in WordPress (the easy way) by Michael Weaver</title>
		<link>http://frankiejarrett.com/2011/09/create-a-dropdown-of-custom-taxonomies-in-wordpress-the-easy-way/#comment-66</link>
		<dc:creator>Michael Weaver</dc:creator>
		<pubDate>Tue, 14 Feb 2012 22:04:50 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=161#comment-66</guid>
		<description>This is working excellently. I am trying to add a &#039;All&#039; option to the select, to filter to all taxonomies.

&lt;pre&gt;
function custom_taxonomy_dropdown($taxonomy) {
	$terms = get_terms($taxonomy);
	echo &#039;&#039;;
		echo &#039;All&#039;;
	foreach ($terms as $term) {
		echo &#039;slug.&#039;&quot;&gt;&#039;.$term-&gt;name.&#039;&#039;;
	}
	echo &#039;&#039;;
}
&lt;/pre&gt;

I&#039;m guessing &lt;code&gt;value=&quot;0&quot;&lt;/code&gt; isn&#039;t correct. Any ideas?</description>
		<content:encoded><![CDATA[<p>This is working excellently. I am trying to add a &#8216;All&#8217; option to the select, to filter to all taxonomies.</p>
<pre>
function custom_taxonomy_dropdown($taxonomy) {
	$terms = get_terms($taxonomy);
	echo '';
		echo 'All';
	foreach ($terms as $term) {
		echo 'slug.'"&gt;'.$term-&gt;name.'';
	}
	echo '';
}
</pre>
<p>I&#8217;m guessing <code>value="0"</code> isn&#8217;t correct. Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a dropdown of custom taxonomies in WordPress (the easy way) by Frankie</title>
		<link>http://frankiejarrett.com/2011/09/create-a-dropdown-of-custom-taxonomies-in-wordpress-the-easy-way/#comment-65</link>
		<dc:creator>Frankie</dc:creator>
		<pubDate>Fri, 03 Feb 2012 23:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=161#comment-65</guid>
		<description>Great to hear! Thanks, Nathan.</description>
		<content:encoded><![CDATA[<p>Great to hear! Thanks, Nathan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a dropdown of custom taxonomies in WordPress (the easy way) by Nathan</title>
		<link>http://frankiejarrett.com/2011/09/create-a-dropdown-of-custom-taxonomies-in-wordpress-the-easy-way/#comment-64</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Fri, 03 Feb 2012 21:20:01 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=161#comment-64</guid>
		<description>Apparently you&#039;re the only person who cares to post a simple, useful tutorial. THANK YOU! I&#039;ve been testing different tutorials until my eyes were red. Your code did the trick without any complications!</description>
		<content:encoded><![CDATA[<p>Apparently you&#8217;re the only person who cares to post a simple, useful tutorial. THANK YOU! I&#8217;ve been testing different tutorials until my eyes were red. Your code did the trick without any complications!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a dropdown of custom taxonomies in WordPress (the easy way) by Caleb M</title>
		<link>http://frankiejarrett.com/2011/09/create-a-dropdown-of-custom-taxonomies-in-wordpress-the-easy-way/#comment-63</link>
		<dc:creator>Caleb M</dc:creator>
		<pubDate>Fri, 20 Jan 2012 17:26:47 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=161#comment-63</guid>
		<description>Wow, this post was very helpful! I can&#039;t believe how long it took me to figure out a dropdown for custom taxonomies... 

Someone was asking about how to get the form to submit, so you may want to complete this tutorial by adding the complete function that wordpress devs should add to their &lt;code&gt;functions.php&lt;/code&gt;

For me this was:

&lt;pre&gt;
function custom_taxonomy_dropdown($taxonomy, $name, $show_option_all) { ?&gt;
	&lt;form action=&quot;&quot; method=&quot;get&quot;&gt;
	 $orderby,
		&#039;order&#039; =&gt; $order,
		&#039;number&#039; =&gt; $limit
	);
	$terms = get_terms($taxonomy, $args);
	echo &#039;&#039;;
	if($show_option_all) echo &#039;&#039;.$show_option_all.&#039;&#039;;
	if($show_option_none) echo &#039;&#039;.$show_option_none.&#039;&#039;;
	foreach ($terms as $term) {
		echo &#039;slug.&#039;&quot;&gt;&#039;.$term-&gt;name.&#039;&#039;;
	}
	echo &#039;&#039;; 
	?&gt;
&lt;?php }
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Wow, this post was very helpful! I can&#8217;t believe how long it took me to figure out a dropdown for custom taxonomies&#8230; </p>
<p>Someone was asking about how to get the form to submit, so you may want to complete this tutorial by adding the complete function that wordpress devs should add to their <code>functions.php</code></p>
<p>For me this was:</p>
<pre>
function custom_taxonomy_dropdown($taxonomy, $name, $show_option_all) { ?&gt;
	&lt;form action=&quot;" method="get"&gt;
	 $orderby,
		'order' =&gt; $order,
		'number' =&gt; $limit
	);
	$terms = get_terms($taxonomy, $args);
	echo '';
	if($show_option_all) echo ''.$show_option_all.'';
	if($show_option_none) echo ''.$show_option_none.'';
	foreach ($terms as $term) {
		echo 'slug.'"&gt;'.$term-&gt;name.'';
	}
	echo '';
	?&gt;
&lt;?php }
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to remove an auto-complete URL from Chrome on a Mac by GUS</title>
		<link>http://frankiejarrett.com/2011/08/how-to-remove-an-auto-complete-url-from-chrome-on-a-mac/#comment-62</link>
		<dc:creator>GUS</dc:creator>
		<pubDate>Thu, 15 Dec 2011 17:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=129#comment-62</guid>
		<description>it worked perfectly for me!</description>
		<content:encoded><![CDATA[<p>it worked perfectly for me!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to remove an auto-complete URL from Chrome on a Mac by Clif Watson</title>
		<link>http://frankiejarrett.com/2011/08/how-to-remove-an-auto-complete-url-from-chrome-on-a-mac/#comment-61</link>
		<dc:creator>Clif Watson</dc:creator>
		<pubDate>Mon, 05 Dec 2011 16:22:31 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=129#comment-61</guid>
		<description>THANKS!! I&#039;ve been looking for this for awhile! A few times I&#039;ve had to be patient for it to take effect, other times, it is fixed immediately. ONE thing I&#039;ve been trying that may/seems to help the situation is begin typing the URL, arrow down to select the one I want to remove, do the shift, fn, delete keystroke then move the arrow to another of the Chrome provided suggestions (preferably the one that is correct) and then hit enter to go that url/search term. That seems to help with the removal of the bad one and sticking the correct one.</description>
		<content:encoded><![CDATA[<p>THANKS!! I&#8217;ve been looking for this for awhile! A few times I&#8217;ve had to be patient for it to take effect, other times, it is fixed immediately. ONE thing I&#8217;ve been trying that may/seems to help the situation is begin typing the URL, arrow down to select the one I want to remove, do the shift, fn, delete keystroke then move the arrow to another of the Chrome provided suggestions (preferably the one that is correct) and then hit enter to go that url/search term. That seems to help with the removal of the bad one and sticking the correct one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a dropdown of custom taxonomies in WordPress (the easy way) by Frankie</title>
		<link>http://frankiejarrett.com/2011/09/create-a-dropdown-of-custom-taxonomies-in-wordpress-the-easy-way/#comment-59</link>
		<dc:creator>Frankie</dc:creator>
		<pubDate>Tue, 08 Nov 2011 21:45:41 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=161#comment-59</guid>
		<description>Hi, Tim. I&#039;d be happy to help. Ok, it depends on what function you want to perform.

Are you using it to do a search on the front-end?

Or are you using it in the WP Admin?

//Frankie</description>
		<content:encoded><![CDATA[<p>Hi, Tim. I&#8217;d be happy to help. Ok, it depends on what function you want to perform.</p>
<p>Are you using it to do a search on the front-end?</p>
<p>Or are you using it in the WP Admin?</p>
<p>//Frankie</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a dropdown of custom taxonomies in WordPress (the easy way) by Tim</title>
		<link>http://frankiejarrett.com/2011/09/create-a-dropdown-of-custom-taxonomies-in-wordpress-the-easy-way/#comment-58</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 08 Nov 2011 17:02:44 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=161#comment-58</guid>
		<description>Hi Frankie.

Thanks for the tutorial.

I think I&#039;m having the same problem as the other Tim - the dropdown is populated OK but it doesn&#039;t submit when an item is selected.

This is the code that I&#039;m trying to use - a combination of your tutorial and the &lt;code&gt;wp_dropdown_categories()&lt;/code&gt; tutorial I found in the Codex:

&lt;pre&gt;
&lt;form action=&quot;/&quot; method=&quot;get&quot;&gt;
&lt;/pre&gt;

Can you point me in the right direction?

Thanks,

Tim</description>
		<content:encoded><![CDATA[<p>Hi Frankie.</p>
<p>Thanks for the tutorial.</p>
<p>I think I&#8217;m having the same problem as the other Tim &#8211; the dropdown is populated OK but it doesn&#8217;t submit when an item is selected.</p>
<p>This is the code that I&#8217;m trying to use &#8211; a combination of your tutorial and the <code>wp_dropdown_categories()</code> tutorial I found in the Codex:</p>
<pre>
&lt;form action=&quot;/" method="get"&gt;
</pre>
<p>Can you point me in the right direction?</p>
<p>Thanks,</p>
<p>Tim</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: frankiejarrett.com @ 2012-02-22 22:48:35 -->
