<?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; Bing</title>
	<atom:link href="http://authoritylabs.com/blog/tag/bing/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>Bing and Find the Perfect Desktop Wallpaper</title>
		<link>http://authoritylabs.com/blog/bing-and-find-the-perfect-desktop-wallpaper/</link>
		<comments>http://authoritylabs.com/blog/bing-and-find-the-perfect-desktop-wallpaper/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 19:50:16 +0000</pubDate>
		<dc:creator>Chase Granberry</dc:creator>
				<category><![CDATA[Housekeeping]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Image Search]]></category>

		<guid isPermaLink="false">http://blog.authoritylabs.com/?p=259</guid>
		<description><![CDATA[Use Bing image search to find the perfect desktop background.]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignright size-full wp-image-263" title="bing-image-search-filter-wallpaper" src="http://blog.authoritylabs.com/wp-content/uploads/2009/06/bing-image-search-filter-wallpaper.png" alt="bing-image-search-filter-wallpaper" width="153" height="156" />I was playing around with <a title="Bing Image Search" href="http://www.bing.com/images">Bing image search</a> today after reading about how great it was. It provides easy and quick ways to search for the image of your dreams. After playing for a bit, I noticed you can choose to filter by image size with five options: all, small, medium, large and wallpaper.</p>
<p>I filtered my search by &#8216;wallpaper&#8217; and noticed that all the images it returned were 1440 x 900 pixels, the exact resolution of my screen.  I changed my screen size to 1024 x 768, searched again, filtered by &#8216;wallpaper&#8217; and all the images it returned were 1024 x 768. As simple as this is, it&#8217;s a very useful and very thoughtful feature.</p>
<p><span id="more-259"></span></p>
<p><img class="alignnone size-full wp-image-264" title="bing-screen-resolution" src="http://blog.authoritylabs.com/wp-content/uploads/2009/06/bing-screen-resolution.png" alt="bing-screen-resolution" width="327" height="254" /></p>
<p>Want a nice green background?  Search &#8216;green&#8217; using Bing image search, filter by &#8216;wallpaper&#8217; and easily find a nice green image that fits your desktop perfectly!</p>
<p><a href="http://blog.authoritylabs.com/wp-content/uploads/2009/06/bing-image-search-green.png"><img class="alignnone size-full wp-image-262" title="bing-image-search-green" src="http://blog.authoritylabs.com/wp-content/uploads/2009/06/bing-image-search-green.png" alt="bing-image-search-green" width="501" height="215" /></a></p>
<p>Like cars?  Search &#8216;ferrari&#8217; and filter by &#8216;wallpaper&#8217;. No matter what your screen size it return images that exact size allowing you to easily access a plethora of perfect desktop background images.</p>
<p><a href="http://blog.authoritylabs.com/wp-content/uploads/2009/06/bing-image-search-ferrari.png"><img class="alignnone size-full wp-image-261" title="bing-image-search-ferrari" src="http://blog.authoritylabs.com/wp-content/uploads/2009/06/bing-image-search-ferrari.png" alt="bing-image-search-ferrari" width="500" height="215" /></a></p>
<p>Have you found any cool tricks with Bing?  We&#8217;d love to hear em!</p>
]]></content:encoded>
			<wfw:commentRss>http://authoritylabs.com/blog/bing-and-find-the-perfect-desktop-wallpaper/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bing Changes</title>
		<link>http://authoritylabs.com/blog/bing-changes/</link>
		<comments>http://authoritylabs.com/blog/bing-changes/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 17:20:33 +0000</pubDate>
		<dc:creator>Chase Granberry</dc:creator>
				<category><![CDATA[Housekeeping]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://blog.authoritylabs.com/?p=249</guid>
		<description><![CDATA[Microsoft definitely tries to improve the relevance of their search results.]]></description>
			<content:encoded><![CDATA[<p></p><p>We&#8217;ve been tracking quite a few domains and keywords on Live for sometime now. I was curious to see if Microsoft made an effort to improve the actual results within their new search engine <a title="Microsoft's New Search Engine" href="http://bing.com">Bing</a>, and not just dress up Live.com results. It looks like they definitely made a few changes to how they rank sites. This isn&#8217;t the case for every keyword across the board, but a good amount of the keywords we&#8217;re tracking significantly changed positions on the 13th of last month.  Here are some examples &#8230;</p>
<p><a href="http://blog.authoritylabs.com/wp-content/uploads/2009/06/bing-nationwide.png"><img class="alignleft size-full wp-image-250" title="bing-nationwide" src="http://blog.authoritylabs.com/wp-content/uploads/2009/06/bing-nationwide.png" alt="bing-nationwide" width="568" height="268" /></a></p>
<p><a href="http://blog.authoritylabs.com/wp-content/uploads/2009/06/bing-sheknows.png"><img class="alignleft size-full wp-image-251" title="bing-sheknows" src="http://blog.authoritylabs.com/wp-content/uploads/2009/06/bing-sheknows.png" alt="bing-sheknows" width="564" height="273" /></a></p>
<p><a href="http://blog.authoritylabs.com/wp-content/uploads/2009/06/bing-watchery.png"><img class="alignleft size-full wp-image-252" title="bing-watchery" src="http://blog.authoritylabs.com/wp-content/uploads/2009/06/bing-watchery.png" alt="bing-watchery" width="566" height="270" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://authoritylabs.com/blog/bing-changes/feed/</wfw:commentRss>
		<slash:comments>0</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 299/314 objects using apc

Served from: authoritylabs.com @ 2012-05-17 04:01:37 -->
