<?xml version="1.0"?><!-- 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>Urban Giraffe Support &#187; Topic: Google Webmaster - New  META tag name for verification</title>
<link>http://urbangiraffe.com/support/</link>
<description>Urban Giraffe Support &#187; Topic: Google Webmaster - New  META tag name for verification</description>
<language>en</language>
<pubDate>Thu, 09 Sep 2010 02:47:13 +0000</pubDate>

<item>
<title>Nik Cree on "Google Webmaster - New  META tag name for verification"</title>
<link>http://urbangiraffe.com/support/topic/google-webmaster-new-name#post-3866</link>
<pubDate>Sat, 15 May 2010 21:25:22 +0000</pubDate>
<dc:creator>Nik Cree</dc:creator>
<guid isPermaLink="false">3866@http://urbangiraffe.com/support/</guid>
<description>&#60;p&#62;@Gil&#60;/p&#62;
&#60;p&#62;Yes you are right. I did have the back slashes in and they were stripped out.
&#60;/p&#62;</description>
</item>
<item>
<title>Gil on "Google Webmaster - New  META tag name for verification"</title>
<link>http://urbangiraffe.com/support/topic/google-webmaster-new-name#post-3859</link>
<pubDate>Tue, 11 May 2010 19:27:03 +0000</pubDate>
<dc:creator>Gil</dc:creator>
<guid isPermaLink="false">3859@http://urbangiraffe.com/support/</guid>
<description>&#60;p&#62;Nick Cree,&#60;br /&#62;
I added the line of code you show under line 47 but there is an error. At the very end instead of: &#34;rn&#34;; it should have a backslash before the r and another backslash between the r and the n.&#60;/p&#62;
&#60;p&#62;What happened in my case is that after I placed the code the way you show, the letters 'rn' appeared above the Logo Area of my WP theme. I only found out why those letters were appearing 6 weeks later. Whats strange is that my website lost 60% of its indexed pages during this period. Now that I fixed the problem, I'm beginning to gain indexed pages again. Coincidence?&#60;/p&#62;
&#60;p&#62;EDIT: For some strange reason this post area does not show backslashes, meaning that Nick Cree's line of code probably had the 2 backslashes, but after we click on &#34;Edit Post&#34; they (backslashes) disappear.&#60;/p&#62;
&#60;p&#62;Urban Giraffe Support should look into this problem, as it made me waste almost quite a bit of my time as well as hundreds of backlinks.
&#60;/p&#62;</description>
</item>
<item>
<title>Nik Cree on "Google Webmaster - New  META tag name for verification"</title>
<link>http://urbangiraffe.com/support/topic/google-webmaster-new-name#post-3439</link>
<pubDate>Mon, 04 Jan 2010 01:11:06 +0000</pubDate>
<dc:creator>Nik Cree</dc:creator>
<guid isPermaLink="false">3439@http://urbangiraffe.com/support/</guid>
<description>&#60;p&#62;Thankyou. I added the extra line:&#60;/p&#62;
&#60;pre class=&#34;brush: html; light: true&#34;&#62;echo '&#38;lt;meta name=&#34;google-site-verification&#34; content=&#34;'.htmlspecialchars ($this-&#38;gt;code).'&#34;/&#38;gt;'.&#34;rn&#34;;&#60;/pre&#62;
&#60;p&#62;under line 47 and it worked a treat.
&#60;/p&#62;</description>
</item>
<item>
<title>remorhaz on "Google Webmaster - New  META tag name for verification"</title>
<link>http://urbangiraffe.com/support/topic/google-webmaster-new-name#post-3088</link>
<pubDate>Tue, 13 Oct 2009 19:00:32 +0000</pubDate>
<dc:creator>remorhaz</dc:creator>
<guid isPermaLink="false">3088@http://urbangiraffe.com/support/</guid>
<description>&#60;p&#62;When I discovered this problem I patched &#60;em&#62;google_webmaster.php&#60;/em&#62; quickly to implement selectable meta tag name.&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
class HSS_GoogleWebmaster extends HS_SiteModule&#60;br /&#62;
{&#60;br /&#62;
...&#60;br /&#62;
   &#60;strong&#62;var $metaname = 'verify-v1';&#60;/strong&#62;&#60;br /&#62;
...&#60;br /&#62;
   function wp_head ()&#60;br /&#62;
   {&#60;br /&#62;
      // Only need to put this on the home page&#60;br /&#62;
      if ($this-&#38;gt;code &#38;amp;&#38;amp; is_front_page ())&#60;br /&#62;
         echo '&#38;lt;meta name=&#34;&#60;strong&#62;'.htmlspecialchars($this-&#38;gt;metaname).'&#60;/strong&#62;&#34; content=&#34;'.htmlspecialchars ($this-&#38;gt;code).'&#34;/&#38;gt;'.&#34;rn&#34;;&#60;br /&#62;
   }&#60;/p&#62;
&#60;p&#62;   function load ($data)&#60;br /&#62;
   {&#60;br /&#62;
      if (isset ($data['code']))&#60;br /&#62;
         $this-&#38;gt;code = $data['code'];&#60;/p&#62;
&#60;p&#62;        &#60;strong&#62;if (isset ($data['metaname']))&#60;br /&#62;
            $this-&#38;gt;metaname = $data['metaname'];&#60;/strong&#62;&#60;br /&#62;
   }&#60;br /&#62;
...&#60;br /&#62;
   function save_options ($data)&#60;br /&#62;
   {&#60;br /&#62;
      return array (&#60;br /&#62;
            'code' =&#38;gt; $data['code'],&#60;br /&#62;
            &#60;strong&#62;'metaname' =&#38;gt; $data['metaname'],&#60;/strong&#62;&#60;br /&#62;
        );&#60;br /&#62;
   } &#60;/p&#62;
&#60;p&#62;   function edit ()&#60;br /&#62;
   {&#60;br /&#62;
   ?&#38;gt;&#60;br /&#62;
 &#38;lt;tr&#38;gt;&#60;br /&#62;
...&#60;br /&#62;
 &#38;lt;/tr&#38;gt;&#60;br /&#62;
 &#60;strong&#62;&#38;lt;tr&#38;gt;&#60;br /&#62;
      &#38;lt;th width=&#34;150&#34;&#38;gt;&#38;lt;?php _e ('Meta tag name', 'headspace'); ?&#38;gt;:&#38;lt;/th&#38;gt;&#60;br /&#62;
      &#38;lt;td&#38;gt;&#60;br /&#62;
            &#38;lt;select name=&#34;metaname&#34;&#38;gt;&#60;br /&#62;
                &#38;lt;?php&#60;br /&#62;
                    foreach (array(&#60;br /&#62;
                        'verify-v1',&#60;br /&#62;
                        'google-site-verification',&#60;br /&#62;
                    ) as $metaname) {&#60;br /&#62;
                        ?&#38;gt;&#38;lt;option&#38;lt;?php if ($metaname == $this-&#38;gt;metaname) { ?&#38;gt; selected=&#34;selected&#34;&#38;lt;?php } ?&#38;gt;&#38;gt;&#38;lt;?php echo htmlspecialchars ($metaname); ?&#38;gt;&#38;lt;/option&#38;gt;&#38;lt;?php&#60;br /&#62;
                    }&#60;br /&#62;
                ?&#38;gt;&#60;br /&#62;
            &#38;lt;/select&#38;gt;&#38;lt;br /&#38;gt;&#60;br /&#62;
         &#38;lt;span class=&#34;sub&#34;&#38;gt;&#38;lt;?php _e ('Select meta tag name.', 'headspace'); ?&#38;gt;&#38;lt;/span&#38;gt;&#60;br /&#62;
        &#38;lt;/td&#38;gt;&#60;br /&#62;
    &#38;lt;/tr&#38;gt;&#60;/strong&#62;&#60;br /&#62;
   &#38;lt;?php&#60;br /&#62;
   }&#60;/p&#62;
&#60;p&#62;}&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>elescondite on "Google Webmaster - New  META tag name for verification"</title>
<link>http://urbangiraffe.com/support/topic/google-webmaster-new-name#post-3041</link>
<pubDate>Thu, 01 Oct 2009 07:06:55 +0000</pubDate>
<dc:creator>elescondite</dc:creator>
<guid isPermaLink="false">3041@http://urbangiraffe.com/support/</guid>
<description>&#60;p&#62;It appears that google has changed the name of the  tag for verifying a site in Webmaster Tools. The current code in google_webmaster.php sends:&#60;/p&#62;
&#60;pre class=&#34;brush: html; light: true&#34;&#62;&#38;lt;meta name=&#34;verify-v1&#34; content=&#34;your_code_here&#34; /&#38;gt;&#60;/pre&#62;
&#60;p&#62;but google now wants:&#60;/p&#62;
&#60;pre class=&#34;brush: html; light: true&#34;&#62;&#38;lt;meta name=&#34;google-site-verification&#34; content=&#34;your_code_here&#34; /&#38;gt;&#60;/pre&#62;
&#60;p&#62;The quick fix is to find the appropriate line (47) in wp-content/plugins/headspace2/modules/site/google_webmaster.php and add a new line under it with the new tag format. Having both versions will not hurt anything and will ensure that the plugin will work across old and new sites.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
