Rich Snippets, Microformats, and You
by Chris Horton
You can see the Google results pages literally changing right in front of you. What used to be plain text and links now have photos, reviews, and a wealth of useful additions that make it much easier for you to get to the true information that you want. Welcome to the world of rich snippets. How can your business take advantage of these coding wonders, what are they, how do you use them, and what can they do for you?
A rich snippet is a simple coding alteration that tells search engines a lot more specifics about what information is on the page. The practice has been around for a couple of years now, but don’t feel like you’ve missed the boat. Search engines have really just started to fully utilize that data to alter the results and experiment with new uses for it every day.
A good example would be the recipe snippet for the brownie recipe example below. All 3 listings in the example use rich snippets to show you calories, cooking time, photos, reviews for their brownie recipes, and other data. All of which are wrapped in rich snippet coding in the backend of their pages.
What may have even caught your eye is that Google can also analyze the data on those pages and separate out certain specifics which allow them to then provide the additional search options that you see on the left hand side giving the searcher the ability to then narrow their search by cooking times, calories, ingredients, etc. And all of this is brought to you courtesy of rich snippets.
Rich snippets can also envelope product reviews…
…contain information on specific people like positions, titles, and companies…
..show event listings for venues…
…have on page clickable links to media such as song clips…
And so much more….
But what’s even more amazing is that you have the capability to apply this to your own websites and get the advantage of having a better visual search result which will give you an amazing advantage over your competitors.
Implementation of snippets into your coding may be the most time consuming of the tasks, but the impact it offers is huge. You need to be somewhat familiar with HTML coding and if you’re familiar with CSS, you’ll find that it’s pretty much the same type of format.
A product page about a blender may normally look like this:
<div>
<h1>Super Blender</h1><br>
<img src=”best-blender.jpg”><br>
<b>Price: </b> $100<br>
<b>Description: </b>The best blender ever.<br>
<b>Reviews: </b>”This is the best blender ever!<br>
</div>
This code is obviously generic and not typical, but an example of what that same block of code would look like after you implemented rich snippets would look like so;
<div itemscope itemtype=”http://www.schema.org/Products”>
<span itemprop=”name”><h1>Super Blender</h1><br></span>
<span itemprop=”name”><img src=”best-blender.jpg”><br></span>
<b>Price: </b><span itemprop=”price”> $100<br></span>
<b>Description: </b><span itemprop=”description”>The best blender ever.<br></span>
<b>Reviews: </b><span itemprop=”review”>”This is the best blender ever!<br></span>
</div>
As you can see, you would simply reference the schema that you’re using (in this case, the one at http://www.schema.org/Products) and then wrap each piece of information (name, price, description, etc.) to properly identify it to the search engines. The search engines then take that data and use them in a variety of different ways. A direct result of its use is the beautification of the search results that has been in place for quite some time now. But what may come next is unknown and it doesn’t look to be going anywhere anytime soon.
Google has released a bunch of videos to help you through the process, so re-explaining it here via text when humans like yourself are visually stimulated would be pointless. So take a look at the videos here and start coding your site accordingly. We’ve also included a great infographic from BlueGlass that provides even more visually stimulating info on the topic.
The diference that you will experience in the way your results look all the way down to clickthrough increases can be immense. It’s time to get coding!
Introduction to Rich Snippets
Types of Rich Snippets
Rich Snippets: Reviews
Rich Snippets: Products
Rich Snippets: Recipe Markup
Rich Snippets: Events
Rich Snippets: Breadcrumbs
Rich Snippets: Apps
Notifying Google of Rich Snippets
Troubleshooting Rich Snippets






Add A Comment
You must be logged in to post a comment.