<?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>WordPress developer. Web geek. Jesus freak.</description>
	<lastBuildDate>Fri, 18 May 2012 17:09: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 Frankie Jarrett</title>
		<link>http://frankiejarrett.com/2011/09/create-a-dropdown-of-custom-taxonomies-in-wordpress-the-easy-way/#comment-126</link>
		<dc:creator>Frankie Jarrett</dc:creator>
		<pubDate>Fri, 18 May 2012 17:09:10 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=161#comment-126</guid>
		<description>If/when I post a solution it will be for everyone to see.</description>
		<content:encoded><![CDATA[<p>If/when I post a solution it will be for everyone to see.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a dropdown of custom taxonomies in WordPress (the easy way) by Kahil</title>
		<link>http://frankiejarrett.com/2011/09/create-a-dropdown-of-custom-taxonomies-in-wordpress-the-easy-way/#comment-125</link>
		<dc:creator>Kahil</dc:creator>
		<pubDate>Fri, 18 May 2012 17:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=161#comment-125</guid>
		<description>Thank you...  been trying to figure that out for days now without any success.  Please feel free to email me a possible solution if you&#039;d like.

Thanks</description>
		<content:encoded><![CDATA[<p>Thank you&#8230;  been trying to figure that out for days now without any success.  Please feel free to email me a possible solution if you&#8217;d like.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a dropdown of custom taxonomies in WordPress (the easy way) by Frankie Jarrett</title>
		<link>http://frankiejarrett.com/2011/09/create-a-dropdown-of-custom-taxonomies-in-wordpress-the-easy-way/#comment-124</link>
		<dc:creator>Frankie Jarrett</dc:creator>
		<pubDate>Fri, 18 May 2012 16:50:51 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=161#comment-124</guid>
		<description>Hi Kahil, Perhaps I will take a look at that issue and write a separate blog post. This post was intended for working with custom taxonomies only.</description>
		<content:encoded><![CDATA[<p>Hi Kahil, Perhaps I will take a look at that issue and write a separate blog post. This post was intended for working with custom taxonomies only.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a dropdown of custom taxonomies in WordPress (the easy way) by Kahil</title>
		<link>http://frankiejarrett.com/2011/09/create-a-dropdown-of-custom-taxonomies-in-wordpress-the-easy-way/#comment-123</link>
		<dc:creator>Kahil</dc:creator>
		<pubDate>Fri, 18 May 2012 16:35:33 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=161#comment-123</guid>
		<description>How can this be applied to pages?  In the codex there is an example of how to get a dropdown for categories and have it go to the selection without having a submit button.  But I can&#039;t get the same method to work for the page dropdown code provided in the codex.  Any ideas?</description>
		<content:encoded><![CDATA[<p>How can this be applied to pages?  In the codex there is an example of how to get a dropdown for categories and have it go to the selection without having a submit button.  But I can&#8217;t get the same method to work for the page dropdown code provided in the codex.  Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to hide your WordPress version number&#8230;completely by Frankie Jarrett</title>
		<link>http://frankiejarrett.com/2012/05/how-to-hide-your-wordpress-version-number-completely/#comment-115</link>
		<dc:creator>Frankie Jarrett</dc:creator>
		<pubDate>Fri, 11 May 2012 04:29:05 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=231#comment-115</guid>
		<description>Very nice, Weston! I&#039;ve never seen &lt;code&gt;PHP_URL_QUERY&lt;/code&gt; before. I&#039;ll have to remember that one.</description>
		<content:encoded><![CDATA[<p>Very nice, Weston! I&#8217;ve never seen <code>PHP_URL_QUERY</code> before. I&#8217;ll have to remember that one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to hide your WordPress version number&#8230;completely by Weston Ruter</title>
		<link>http://frankiejarrett.com/2012/05/how-to-hide-your-wordpress-version-number-completely/#comment-114</link>
		<dc:creator>Weston Ruter</dc:creator>
		<pubDate>Fri, 11 May 2012 04:23:42 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=231#comment-114</guid>
		<description>Good call on scrubbing the dependency versions. Here is an alternate filter which I think would be more robust:

&lt;pre&gt;&lt;code&gt;/* Hide WP version strings from scripts and styles
 * @return {string} $src
 * @filter script_loader_src
 * @filter style_loader_src
 */
function fjarrett_remove_wp_version_strings( $src ) {
	global $wp_version;
	parse_str(parse_url($src, PHP_URL_QUERY), $query);
	if ( !empty($query[&#039;ver&#039;]) &amp;&amp; $query[&#039;ver&#039;] === $wp_version ) {
		$src = remove_query_arg(&#039;ver&#039;, $src);
	}
	return $src;
}
add_filter( &#039;script_loader_src&#039;, &#039;fjarrett_remove_wp_version_strings&#039; );
add_filter( &#039;style_loader_src&#039;, &#039;fjarrett_remove_wp_version_strings&#039; );&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Good call on scrubbing the dependency versions. Here is an alternate filter which I think would be more robust:</p>
<pre><code>/* Hide WP version strings from scripts and styles
 * @return {string} $src
 * @filter script_loader_src
 * @filter style_loader_src
 */
function fjarrett_remove_wp_version_strings( $src ) {
	global $wp_version;
	parse_str(parse_url($src, PHP_URL_QUERY), $query);
	if ( !empty($query['ver']) &amp;&amp; $query['ver'] === $wp_version ) {
		$src = remove_query_arg('ver', $src);
	}
	return $src;
}
add_filter( 'script_loader_src', 'fjarrett_remove_wp_version_strings' );
add_filter( 'style_loader_src', 'fjarrett_remove_wp_version_strings' );</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to remove an auto-complete URL from Chrome on a Mac by Frankie Jarrett</title>
		<link>http://frankiejarrett.com/2011/08/how-to-remove-an-auto-complete-url-from-chrome-on-a-mac/#comment-89</link>
		<dc:creator>Frankie Jarrett</dc:creator>
		<pubDate>Mon, 30 Apr 2012 20:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=129#comment-89</guid>
		<description>Glad it worked for you. Thanks, Mickey!</description>
		<content:encoded><![CDATA[<p>Glad it worked for you. Thanks, Mickey!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to remove an auto-complete URL from Chrome on a Mac by mickey</title>
		<link>http://frankiejarrett.com/2011/08/how-to-remove-an-auto-complete-url-from-chrome-on-a-mac/#comment-79</link>
		<dc:creator>mickey</dc:creator>
		<pubDate>Tue, 24 Apr 2012 14:33:49 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=129#comment-79</guid>
		<description>I was pulling my hair out for a few days.  This works like a charm. Thanks a bunch. I did find there are some things that cannot be deleted, although I don&#039;t know yet why. I should note that for me it only works if I highlight the item with the mouse (if you scroll down with the keyboard, it will not work).</description>
		<content:encoded><![CDATA[<p>I was pulling my hair out for a few days.  This works like a charm. Thanks a bunch. I did find there are some things that cannot be deleted, although I don&#8217;t know yet why. I should note that for me it only works if I highlight the item with the mouse (if you scroll down with the keyboard, it will not work).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to remove an auto-complete URL from Chrome on a Mac by Anis</title>
		<link>http://frankiejarrett.com/2011/08/how-to-remove-an-auto-complete-url-from-chrome-on-a-mac/#comment-78</link>
		<dc:creator>Anis</dc:creator>
		<pubDate>Sun, 22 Apr 2012 09:54:26 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=129#comment-78</guid>
		<description>THANKS !
(I needed this for PC and did not know about the Shift+Del thing)</description>
		<content:encoded><![CDATA[<p>THANKS !<br />
(I needed this for PC and did not know about the Shift+Del thing)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create a shortcode for displaying Order History on your Cart66 site by zach</title>
		<link>http://frankiejarrett.com/2011/08/create-a-shortcode-for-displaying-order-history-on-your-cart66-site/#comment-76</link>
		<dc:creator>zach</dc:creator>
		<pubDate>Wed, 18 Apr 2012 22:48:42 +0000</pubDate>
		<guid isPermaLink="false">http://frankiejarrett.com/?p=38#comment-76</guid>
		<description>Thank you for your quick response! 

I&#039;ve been struggling with it, and I can&#039;t seem to find how to set products to create membership (i&#039;d much rather not to force membership on those who don&#039;t want it also), is it possible in any way to edit this short-code to query the sql based on a logged in users email, rather than account name?</description>
		<content:encoded><![CDATA[<p>Thank you for your quick response! </p>
<p>I&#8217;ve been struggling with it, and I can&#8217;t seem to find how to set products to create membership (i&#8217;d much rather not to force membership on those who don&#8217;t want it also), is it possible in any way to edit this short-code to query the sql based on a logged in users email, rather than account name?</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
Database Caching using disk: basic
Object Caching 425/427 objects using disk: basic

Served from: frankiejarrett.com @ 2012-05-19 16:38:24 -->
