I searched for rich snippets on google. Google lists the following schema.org elements that are supported:
- Reviews
- People
- List item
- Products
- Enterprises and organizations
- Recipes
- Events Music
I noticed that in the search results Google displays Rich Snippets for article and BlogPosting. When you click on the link and use Firebug to check the source code, I see that the used schema.org is really BlogPosting.
I tried adding BlogPosting to my sample code and the Google Rich Snippet Tool to check the results, but I canโt get the image to display, I use the following code:
<html> <body> etc etc.... <div itemscope="" itemtype="http://schema.org/BlogPosting"> <img itemprop="image" href="/images/test.jpg" item> </div> ...
Although it does not show the image in the Rich Snippet tool, it recognizes that the image has been set and displays the URL text in the "Extract advanced snippets from page" field. I tried using the SoftwareApplication schema, and then I get the image to display.
My question is: Does the Rich Snippet tool limit the images that it shows based on the above schemes and actually once in real-time search results, Rich Snippets for the article and BlogPostings will be shown?
source share