<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AuthorityLabs &#187; Yahoo!</title>
	<atom:link href="http://authoritylabs.com/blog/tag/yahoo/feed/" rel="self" type="application/rss+xml" />
	<link>http://authoritylabs.com</link>
	<description></description>
	<lastBuildDate>Mon, 14 May 2012 20:44:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Implementing Schema.org Microdata</title>
		<link>http://authoritylabs.com/blog/implementing-schema-microdata/</link>
		<comments>http://authoritylabs.com/blog/implementing-schema-microdata/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 16:45:16 +0000</pubDate>
		<dc:creator>Dawn Wentzell</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[microdata]]></category>
		<category><![CDATA[Schema.org]]></category>
		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://authoritylabs.com/?p=2456</guid>
		<description><![CDATA[Last week, Google, Bing and Yahoo announced collaboration on a single standard for structured markup. Yes, I’m talking about Schema.org and utilizing Microdata for “Rich Snippets.” Since then, many sites have posted about why Schema.org might be good, bad or otherwise for site owners; some balanced, some not. Personally, I think structured markup and machine-readable [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://authoritylabs.com/wp-content/uploads/schema.png"><img class="alignright size-full wp-image-2457" src="http://authoritylabs.com/wp-content/uploads/schema.png" alt="" width="185" height="63" /></a>Last week, Google, Bing and Yahoo announced collaboration on a single standard for structured markup. Yes, I’m talking about Schema.org and utilizing Microdata for “Rich Snippets.”</p>
<p>Since then, many sites have posted about why Schema.org might be <a href="http://www.seomoz.org/blog/schemaorg-a-new-approach-to-structured-data-for-seo">good</a>, <a href="http://econsultancy.com/us/blog/7603-schema-org-good-for-google-bing-and-yahoo-bad-for-everyone-else">bad</a> or <a href="http://www.seobythesea.com/?p=5608">otherwise</a> for site owners; some <a href="http://www.seobythesea.com/?p=5608">balanced</a>, some  <a href="http://www.readwriteweb.com/archives/is_schemaorg_really_a_google_land_grab.php">not</a>. Personally, I think structured markup and machine-readable information is always good to have on your site, regardless of potential SEO benefits. I’ve had a love for structured markup (in the form of Microformats) since I first laid eyes on hCard several years ago. I could have written a whole post about why I think Schema.org is good for SEO, but instead I decided to implement it on a site of mine.<br />
<span id="more-2456"></span><br />
I co-own a <a href="http://bookbrothel.com/">book review site</a>, and I’ve been meaning to implement the microformat hReview on it for over a year. I never got around to it because it involved creating custom post types in WordPress, and I knew that would be a time-consuming affair. I finally bit the bullet and sat down to do that on Sunday. That part took about 5 hours of my day.</p>
<p>Then, I started implementing microdata. From never having implemented microdata before in my life (like I said, I was a Microformats fan), I found out what markup I needed, added it to my template, and tested it in about an hour.</p>
<p>I started out by making a list of all of the attributes about books that we use in a review. Then I determined which item type (<em>itemtype</em>) it would be associated with – for my purposes, <a href="http://schema.org/Book">Book</a>, <a href="http://schema.org/Review">Review</a> , and <a href="http://schema.org/Rating">Rating</a> were all I needed. Then, I noted which item property (<em>itemprop</em>) I would use. Then it was simply a matter of adding the appropriate markup to my existing HTML and PHP.</p>
<p><a href="http://authoritylabs.com/wp-content/uploads/microdata-paper.jpg"><img class="aligncenter size-full wp-image-2458" src="http://authoritylabs.com/wp-content/uploads/microdata-paper.jpg" alt="" width="500" height="268" /></a></p>
<p>There were a couple of attributes that were confusing – for example, do I use <em>description</em> or <em>reviewBody</em> from Review? Do I use <em>aggregateRating</em> from Review, or <em>reviewRating</em> from Rating? The examples on Schema.org were helpful to a degree, but I still felt like I was guessing at proper use. Time will tell if I’ve used the appropriate item properties. I also wasn’t sure if I had to upgrade the doctype to HTML5 or not, but I chose not to as only modern browsers support it and some of my users have older browsers.</p>
<p><a href="http://authoritylabs.com/wp-content/uploads/microdata-markup.png"><img class="aligncenter size-full wp-image-2459" src="http://authoritylabs.com/wp-content/uploads/microdata-markup.png" alt="" width="500" height="268" /></a></p>
<p>To test that you’ve implemented microdata correctly, you can use <a href="http://www.google.com/webmasters/tools/richsnippets">Google’s Rich Snippet testing tool</a>. However, it was throwing errors for things it should not have had a problem with (I suspect it was getting a lot of use over the last week as people rushed to add microdata to their sites), so I looked for an alternative. I found this <a href="http://krofdrakula.github.com/microdata-tool/">Microdata Tool</a> using jQuery to test that I had applied the code correctly; unfortunately it can’t show how Google might display this data in the SERPs.</p>
<p style="text-align: center"><a href="http://authoritylabs.com/wp-content/uploads/testing-microdata.png"><img class="aligncenter size-full wp-image-2460" src="http://authoritylabs.com/wp-content/uploads/testing-microdata.png" alt="" width="500" height="286" /></a></p>
<p>One of the arguments the naysayers against Schema.org are using is that it will take too long/too many resources to implement, but clearly that is not the case. I’m going to continue to tinker with microdata and my review template, and monitor my organic search rankings and conversion rates to determine just what the effect of adding it will be over time.</p>
]]></content:encoded>
			<wfw:commentRss>http://authoritylabs.com/blog/implementing-schema-microdata/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Backlink Data is Almost Here!</title>
		<link>http://authoritylabs.com/blog/backlink-data-is-almost-here/</link>
		<comments>http://authoritylabs.com/blog/backlink-data-is-almost-here/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 20:50:11 +0000</pubDate>
		<dc:creator>Chase Granberry</dc:creator>
				<category><![CDATA[Housekeeping]]></category>
		<category><![CDATA[backlinks]]></category>
		<category><![CDATA[blog links]]></category>
		<category><![CDATA[MajesticSEO]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[seo reports]]></category>
		<category><![CDATA[SEOmoz]]></category>
		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://blog.authoritylabs.com/?p=541</guid>
		<description><![CDATA[We&#8217;re excited to announce a pretty big new feature which will be live next week. We&#8217;ve been working with a few different API&#8217;s to bring in backlink data about any website. There aren&#8217;t that many sources for this information, and numbers from these sources can vary widely, which is why we decided to give you [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>We&#8217;re excited to announce a pretty big new feature which will be live next week. We&#8217;ve been working with a few different API&#8217;s to bring in backlink data about any website. There aren&#8217;t that many sources for this information, and numbers from these sources can vary widely, which is why we decided to give you all of them, and let you choose which metric to look at. We&#8217;ve successfully incorporated data from <a href="http://siteexplorer.search.yahoo.com/">Yahoo!</a>, <a href="http://www.seomoz.org/">SEOmoz</a> and <a href="http://www.majesticseo.com/">MajesticSEO</a>. We&#8217;re also pulling, in real-time, the latest blogs linking to any site. Here&#8217;s a preview of what you&#8217;ll see very soon.</p>
<p><span id="more-541"></span>We&#8217;ve used the <a href="http://www.toprankblog.com/">Top Rank Blog</a> as an example, and you&#8217;ll see from these numbers, they&#8217;ve done an impressive job of developing link worthy content. How does your blog compare? Next week you&#8217;ll be able to find out.</p>
<p style="text-align: center;"><em>[click to enlarge]</em></p>
<p style="text-align: center;"><a href="http://blog.authoritylabs.com/wp-content/uploads/2010/03/backlink-reporting.png"><img class="size-medium wp-image-543 aligncenter" title="backlink-reporting" src="http://blog.authoritylabs.com/wp-content/uploads/2010/03/backlink-reporting-300x162.png" alt="" width="300" height="162" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://authoritylabs.com/blog/backlink-data-is-almost-here/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Canonical Tag is Useless</title>
		<link>http://authoritylabs.com/blog/canonical-tag-is-useless/</link>
		<comments>http://authoritylabs.com/blog/canonical-tag-is-useless/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 18:05:52 +0000</pubDate>
		<dc:creator>Chase Granberry</dc:creator>
				<category><![CDATA[Optimization]]></category>
		<category><![CDATA[canonical tag]]></category>
		<category><![CDATA[duplicate content]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://blog.authoritylabs.com/?p=175</guid>
		<description><![CDATA[Canonical tag is a must in terms of 'best practices' but mostly it's a way for search engines to put an end to all the duplicate content questions.]]></description>
			<content:encoded><![CDATA[<p></p><p>The canonical tag is simply a way to silence webmasters.<img class="alignright size-full wp-image-176" title="Webmasters and Duplicate Content" src="http://blog.authoritylabs.com/wp-content/uploads/2009/02/webmasters.jpg" alt="Webmasters and Duplicate Content" width="120" height="143" /></p>
<p>Yesterday at SMX West it was announced that Google, Yahoo! and Live have agreed upon a method to help webmasters define original content within a site. The <strong>canonical tag</strong> is a meta tag used to tell search engines which page to list in SERPs when multiple listings of the same, or very similar content exist in their databases.</p>
<p><span id="more-175"></span></p>
<p>On-site duplicate content has been a big issue since the beginning of the web. There are lots of things that could cause search engine spiders to index the same content at multiple locations. URL canonical variations (http://www.exmaple.com vs. http://example.com) is the most common issues, but there are others. This is a <a title="Canonical Tag Explaination" href="http://www.seomoz.org/blog/canonical-url-tag-the-most-important-advancement-in-seo-practices-since-sitemaps">good explanation of the canonical tag</a> and how it&#8217;s implemented.</p>
<p>In september the Google Webmaster Central Blog published a fairly extensive post on <a title="How Search Engines Handle Duplicate Content" href="http://googlewebmastercentral.blogspot.com/2008/09/demystifying-duplicate-content-penalty.html">how search engines handle on-site duplicate content</a> in hopes of dispelling a lot of the rumors and speculation circling the issue. Despite how clear the article was, and all the other resources on the web, there were still LOTS of questions about the issue.</p>
<p>As new webmasters come into the space trying to understand SEO and mitigating duplicate content the easy thing to do is ask Google. If you&#8217;re site is set up correctly duplicate content shouldn&#8217;t be an issue. The canonical tag, is not the end-all be-all of duplicate content. You still need a sitemap, good URLs, redirection from the www or the non-www to the correct path, etc. This tag is simply an easy answer to the duplicate content question.</p>
<p>What do you think? Have you implimented the canonical tag yet? Is it really THAT important considering all the other things that still need to be done?</p>
]]></content:encoded>
			<wfw:commentRss>http://authoritylabs.com/blog/canonical-tag-is-useless/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc (User agent is rejected)
Object Caching 315/317 objects using apc

Served from: authoritylabs.com @ 2012-05-17 05:21:26 -->
