<?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 on: 20 Searches I’m Thankful For</title>
	<atom:link href="http://outspokenmedia.com/blogging/20-searches-im-thankful-for/feed/" rel="self" type="application/rss+xml" />
	<link>http://outspokenmedia.com/blogging/20-searches-im-thankful-for/</link>
	<description></description>
	<lastBuildDate>Fri, 08 Mar 2013 16:32:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Data Entry Services</title>
		<link>http://outspokenmedia.com/blogging/20-searches-im-thankful-for/#comment-7687</link>
		<dc:creator>Data Entry Services</dc:creator>
		<pubDate>Mon, 30 Nov 2009 12:01:58 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=4197#comment-7687</guid>
		<description><![CDATA[Bummer, I don&#039;t have any really funny examples.  Enjoyed yours though!]]></description>
		<content:encoded><![CDATA[<p>Bummer, I don&#8217;t have any really funny examples.  Enjoyed yours though!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lisa Barone</title>
		<link>http://outspokenmedia.com/blogging/20-searches-im-thankful-for/#comment-7684</link>
		<dc:creator>Lisa Barone</dc:creator>
		<pubDate>Sun, 29 Nov 2009 06:59:16 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=4197#comment-7684</guid>
		<description><![CDATA[He does that to people.]]></description>
		<content:encoded><![CDATA[<p>He does that to people.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean Maguire</title>
		<link>http://outspokenmedia.com/blogging/20-searches-im-thankful-for/#comment-7683</link>
		<dc:creator>Sean Maguire</dc:creator>
		<pubDate>Sun, 29 Nov 2009 02:22:08 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=4197#comment-7683</guid>
		<description><![CDATA[Speechless.]]></description>
		<content:encoded><![CDATA[<p>Speechless.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SEOmofo</title>
		<link>http://outspokenmedia.com/blogging/20-searches-im-thankful-for/#comment-7678</link>
		<dc:creator>SEOmofo</dc:creator>
		<pubDate>Sat, 28 Nov 2009 04:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=4197#comment-7678</guid>
		<description><![CDATA[&lt;blockquote&gt;&lt;b&gt;[fb_addgravatar get_avatar]:&lt;/b&gt; I…um…have no idea what this means but it’s probably very smart.&lt;/blockquote&gt;

Very smart indeed.

I was searching for [fb_addgravatar get_avatar] about a week ago, and here&#039;s why:

It all started when I noticed the default Gravatar on Outspoken Media is not the usual &quot;Mystery Man&quot; image--it is an image of your brand logo icon. I&#039;ve always wanted to customize the default Gravatar on my site, but since the images were being pulled from gravatar.com, I assumed it wasn&#039;t possible without some serious WP hacking. I inspected the image address for your logo icon and saw that it was being hosted at some kind of dynamic gravatar.com URL that contained your icon&#039;s location (on outspokenmedia.com) as one of its parameters. So apparently, it&#039;s possible to tell Gravatar where to pull your default image from?

I could have just asked you directly, but I didn&#039;t want to admit that you might know something I don&#039;t, so I investigated further by searching for something like [custom default gravatar thesis]. Much to my surprise...one of the top results was this Outspoken article: &lt;a href=&quot;http://outspokenmedia.com/branding/adding-custom-default-gravatars-to-your-blog/&quot; rel=&quot;nofollow&quot;&gt;Adding Custom Default Gravatars to Your Blog&lt;/a&gt;.

The article included instructions for Thesis-based blogs that recommended adding this php code to the custom_functions.php file:

&lt;blockquote&gt;
    /* Add a Custom Default Gravatar */
    if ( !function_exists(’custom_gravatar’) ) {
    function custom_gravatar( $avatar_defaults ) {
    $myavatar = get_bloginfo(’template_directory’) . ‘/custom/images/YOUR-CUSTOM-GRAPHIC-HERE.jpg’;
    $avatar_defaults[$myavatar] = ‘NAME-YOU-GIVE-YOUR-AVATAR’;

    return $avatar_defaults;
    }
    add_filter( ‘avatar_defaults’, ‘fb_addgravatar’ );
    }
&lt;/blockquote&gt;

Unfortunately, this code didn&#039;t work. After reading the comments on that article, I found out that this code doesn&#039;t work for 2 reasons:

1.  WordPress has changed the regular quotation marks and apostrophes into the fancy versions, via their &quot;smart quotes&quot; functionality. These need to be replaced with their original non-fancy versions (i.e. straight quotes) after the code has been pasted into the php editor.

2.  The custom function was defined as &lt;code&gt;custom_gravatar&lt;/code&gt;, but then when it was being &quot;hooked&quot; onto &lt;code&gt;avatar_defaults&lt;/code&gt;, the custom function was referred to as &lt;code&gt;fb_addgravatar&lt;/code&gt;. To correct this, the &lt;code&gt;fb_addgravatar&lt;/code&gt; needs to be changed to &lt;code&gt;custom_gravatar&lt;/code&gt;.

After I edited my code and got it working, I studied the originally-recommended code and tried to figure out where &lt;code&gt;fb_addgravatar&lt;/code&gt; came from. My first suspicion was that it was a copy/paste error caused by reusing the code from the non-Thesis recommendation, but that wasn&#039;t the case since it only appeared in the Thesis code recommendation. So...I went to Google and searched for &lt;code&gt;fb_addgravatar&lt;/code&gt;, to see if I could locate the original source.

Unfortunately, this function name appeared on several different pages across many different websites. I still didn&#039;t know if this was a well-known function name (e.g. written into the WP Codex or something) or just one man&#039;s code being duplicated across the internet (I&#039;ve heard that can be an issue sometimes).

I know that many WP programmers will prefix their custom functions&#039; names with a specific word or character string (e.g. their name or the name of the plugin they&#039;re programming), and then follow it with a phrase that describes the function&#039;s behavior. The prefix helps human readers understand the scope of each function, and it also mitigates the chances of conflicting plugins. This led me to believe that the source of &lt;code&gt;fb_addgravatar&lt;/code&gt; would probably have additional code samples containing &lt;code&gt;fb_FUNCTION_NAME&lt;/code&gt;.

The first Google result for &lt;code&gt;fb_addgravatar&lt;/code&gt; was &lt;a href=&quot;http://wpengineer.com/add-avatar-to-wordpress-default/&quot; rel=&quot;nofollow&quot;&gt;Add Avatar To WordPress Default&lt;/a&gt;, from a site called &lt;a href=&quot;http://wpengineer.com/&quot; rel=&quot;nofollow&quot;&gt;WPengineer.com&lt;/a&gt;. The author of this article was listed as &quot;Frank,&quot; which indicated that &quot;fb&quot; might be this author&#039;s initials. I clicked on the site&#039;s &lt;a href=&quot;http://wpengineer.com/about/&quot; rel=&quot;nofollow&quot;&gt;About&lt;/a&gt; link, and learned that one of the site&#039;s authors is &lt;a href=&quot;http://bueltge.de/&quot; rel=&quot;nofollow&quot;&gt;Frank Bültge&lt;/a&gt;, who writes about WordPress (in German) on several blogs and websites. Many of his other posts include custom functions whose names begin with fb_. And with that, the case was closed.

I&#039;m not completely sure if I was one of the people who searched for [fb_addgravatar get_avatar], but I know I searched for several queries that were very similar to it. In any case, this should shed some light on that query for you.

P.S. I might also be responsible for searches #4, #10, #13, and #16.

P.P.S.  Ok, fine...and #11.]]></description>
		<content:encoded><![CDATA[<blockquote><p><b>[fb_addgravatar get_avatar]:</b> I…um…have no idea what this means but it’s probably very smart.</p></blockquote>
<p>Very smart indeed.</p>
<p>I was searching for [fb_addgravatar get_avatar] about a week ago, and here&#8217;s why:</p>
<p>It all started when I noticed the default Gravatar on Outspoken Media is not the usual &#8220;Mystery Man&#8221; image&#8211;it is an image of your brand logo icon. I&#8217;ve always wanted to customize the default Gravatar on my site, but since the images were being pulled from gravatar.com, I assumed it wasn&#8217;t possible without some serious WP hacking. I inspected the image address for your logo icon and saw that it was being hosted at some kind of dynamic gravatar.com URL that contained your icon&#8217;s location (on outspokenmedia.com) as one of its parameters. So apparently, it&#8217;s possible to tell Gravatar where to pull your default image from?</p>
<p>I could have just asked you directly, but I didn&#8217;t want to admit that you might know something I don&#8217;t, so I investigated further by searching for something like [custom default gravatar thesis]. Much to my surprise&#8230;one of the top results was this Outspoken article: <a href="http://outspokenmedia.com/branding/adding-custom-default-gravatars-to-your-blog/" rel="nofollow">Adding Custom Default Gravatars to Your Blog</a>.</p>
<p>The article included instructions for Thesis-based blogs that recommended adding this php code to the custom_functions.php file:</p>
<blockquote><p>
    /* Add a Custom Default Gravatar */<br />
    if ( !function_exists(’custom_gravatar’) ) {<br />
    function custom_gravatar( $avatar_defaults ) {<br />
    $myavatar = get_bloginfo(’template_directory’) . ‘/custom/images/YOUR-CUSTOM-GRAPHIC-HERE.jpg’;<br />
    $avatar_defaults[$myavatar] = ‘NAME-YOU-GIVE-YOUR-AVATAR’;</p>
<p>    return $avatar_defaults;<br />
    }<br />
    add_filter( ‘avatar_defaults’, ‘fb_addgravatar’ );<br />
    }
</p></blockquote>
<p>Unfortunately, this code didn&#8217;t work. After reading the comments on that article, I found out that this code doesn&#8217;t work for 2 reasons:</p>
<p>1.  WordPress has changed the regular quotation marks and apostrophes into the fancy versions, via their &#8220;smart quotes&#8221; functionality. These need to be replaced with their original non-fancy versions (i.e. straight quotes) after the code has been pasted into the php editor.</p>
<p>2.  The custom function was defined as <code>custom_gravatar</code>, but then when it was being &#8220;hooked&#8221; onto <code>avatar_defaults</code>, the custom function was referred to as <code>fb_addgravatar</code>. To correct this, the <code>fb_addgravatar</code> needs to be changed to <code>custom_gravatar</code>.</p>
<p>After I edited my code and got it working, I studied the originally-recommended code and tried to figure out where <code>fb_addgravatar</code> came from. My first suspicion was that it was a copy/paste error caused by reusing the code from the non-Thesis recommendation, but that wasn&#8217;t the case since it only appeared in the Thesis code recommendation. So&#8230;I went to Google and searched for <code>fb_addgravatar</code>, to see if I could locate the original source.</p>
<p>Unfortunately, this function name appeared on several different pages across many different websites. I still didn&#8217;t know if this was a well-known function name (e.g. written into the WP Codex or something) or just one man&#8217;s code being duplicated across the internet (I&#8217;ve heard that can be an issue sometimes).</p>
<p>I know that many WP programmers will prefix their custom functions&#8217; names with a specific word or character string (e.g. their name or the name of the plugin they&#8217;re programming), and then follow it with a phrase that describes the function&#8217;s behavior. The prefix helps human readers understand the scope of each function, and it also mitigates the chances of conflicting plugins. This led me to believe that the source of <code>fb_addgravatar</code> would probably have additional code samples containing <code>fb_FUNCTION_NAME</code>.</p>
<p>The first Google result for <code>fb_addgravatar</code> was <a href="http://wpengineer.com/add-avatar-to-wordpress-default/" rel="nofollow">Add Avatar To WordPress Default</a>, from a site called <a href="http://wpengineer.com/" rel="nofollow">WPengineer.com</a>. The author of this article was listed as &#8220;Frank,&#8221; which indicated that &#8220;fb&#8221; might be this author&#8217;s initials. I clicked on the site&#8217;s <a href="http://wpengineer.com/about/" rel="nofollow">About</a> link, and learned that one of the site&#8217;s authors is <a href="http://bueltge.de/" rel="nofollow">Frank Bültge</a>, who writes about WordPress (in German) on several blogs and websites. Many of his other posts include custom functions whose names begin with fb_. And with that, the case was closed.</p>
<p>I&#8217;m not completely sure if I was one of the people who searched for [fb_addgravatar get_avatar], but I know I searched for several queries that were very similar to it. In any case, this should shed some light on that query for you.</p>
<p>P.S. I might also be responsible for searches #4, #10, #13, and #16.</p>
<p>P.P.S.  Ok, fine&#8230;and #11.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AZhitman</title>
		<link>http://outspokenmedia.com/blogging/20-searches-im-thankful-for/#comment-7661</link>
		<dc:creator>AZhitman</dc:creator>
		<pubDate>Thu, 26 Nov 2009 04:17:47 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=4197#comment-7661</guid>
		<description><![CDATA[@Brian L  Hey, you might be a fatass SEO, but you&#039;re OUR fatass SEO, dammit!]]></description>
		<content:encoded><![CDATA[<p>@Brian L  Hey, you might be a fatass SEO, but you&#8217;re OUR fatass SEO, dammit!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan Bleiweiss</title>
		<link>http://outspokenmedia.com/blogging/20-searches-im-thankful-for/#comment-7659</link>
		<dc:creator>Alan Bleiweiss</dc:creator>
		<pubDate>Thu, 26 Nov 2009 03:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=4197#comment-7659</guid>
		<description><![CDATA[so &quot;Lisa Barone Cupcake&quot; might be, oh, someone doing some detective work to find the reference&#039;s you&#039;ve made about cupcakes, so when they surprise you with one (or more?), they get it right.  #JustSayin

Lisa, of all the things I needed tonight, on the eve of thanksgiving, the one thing I got that I am most grateful for, was the gift of laughing out loud.  

The Lisa is teh awesome]]></description>
		<content:encoded><![CDATA[<p>so &#8220;Lisa Barone Cupcake&#8221; might be, oh, someone doing some detective work to find the reference&#8217;s you&#8217;ve made about cupcakes, so when they surprise you with one (or more?), they get it right.  #JustSayin</p>
<p>Lisa, of all the things I needed tonight, on the eve of thanksgiving, the one thing I got that I am most grateful for, was the gift of laughing out loud.  </p>
<p>The Lisa is teh awesome</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dr. Pete</title>
		<link>http://outspokenmedia.com/blogging/20-searches-im-thankful-for/#comment-7655</link>
		<dc:creator>Dr. Pete</dc:creator>
		<pubDate>Wed, 25 Nov 2009 20:25:37 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=4197#comment-7655</guid>
		<description><![CDATA[The one I&#039;m trying to figure out this month on my own site is: &quot;dilbert usability poison&quot;. On the bright side, I am still #1 for &quot;x-wing targeting computer&quot; - that brings in the big bucks, let me tell you.]]></description>
		<content:encoded><![CDATA[<p>The one I&#8217;m trying to figure out this month on my own site is: &#8220;dilbert usability poison&#8221;. On the bright side, I am still #1 for &#8220;x-wing targeting computer&#8221; &#8211; that brings in the big bucks, let me tell you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bonnie</title>
		<link>http://outspokenmedia.com/blogging/20-searches-im-thankful-for/#comment-7652</link>
		<dc:creator>Bonnie</dc:creator>
		<pubDate>Wed, 25 Nov 2009 17:44:42 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=4197#comment-7652</guid>
		<description><![CDATA[Congratulations on a fabulous first year!]]></description>
		<content:encoded><![CDATA[<p>Congratulations on a fabulous first year!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Todd Mintz</title>
		<link>http://outspokenmedia.com/blogging/20-searches-im-thankful-for/#comment-7651</link>
		<dc:creator>Todd Mintz</dc:creator>
		<pubDate>Wed, 25 Nov 2009 17:19:19 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=4197#comment-7651</guid>
		<description><![CDATA[I believe the correct phrase is &quot;It&#039;s not the size, it&#039;s the frequency&quot; :.)

I get &quot;Gay National Anthem&quot; searches on my personal site all the time (having written about Marvin Gaye).]]></description>
		<content:encoded><![CDATA[<p>I believe the correct phrase is &#8220;It&#8217;s not the size, it&#8217;s the frequency&#8221; :.)</p>
<p>I get &#8220;Gay National Anthem&#8221; searches on my personal site all the time (having written about Marvin Gaye).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: netmeg</title>
		<link>http://outspokenmedia.com/blogging/20-searches-im-thankful-for/#comment-7650</link>
		<dc:creator>netmeg</dc:creator>
		<pubDate>Wed, 25 Nov 2009 16:55:06 +0000</pubDate>
		<guid isPermaLink="false">http://outspokenmedia.com/?p=4197#comment-7650</guid>
		<description><![CDATA[The #2 search string for my .com site is &quot;watching idiots&quot; where I have maintained the top spot in Google all year.  #5 is &quot;idiots online&quot;.

#1 for the .org version is &quot;how to roast a turkey&quot;.  Google conveniently tanked that search phrase for me last week, but it&#039;s still on the first page for Yahoo &amp; Bing.

Oddly, I&#039;m on the first page in Bing &amp; the first Google Image for a make and model of car that I sold back in 2005.  Love that minty freshness!]]></description>
		<content:encoded><![CDATA[<p>The #2 search string for my .com site is &#8220;watching idiots&#8221; where I have maintained the top spot in Google all year.  #5 is &#8220;idiots online&#8221;.</p>
<p>#1 for the .org version is &#8220;how to roast a turkey&#8221;.  Google conveniently tanked that search phrase for me last week, but it&#8217;s still on the first page for Yahoo &amp; Bing.</p>
<p>Oddly, I&#8217;m on the first page in Bing &amp; the first Google Image for a make and model of car that I sold back in 2005.  Love that minty freshness!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.837 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-17 00:32:49 -->
