Microdata schema person does not show google snippets

1.5k views Asked by At

I would like to create an about me page, and make it showing snippets on google search results, for example like Linkedin does (I mean the lightgray string with the location, job, etc about the profile person)

enter image description here

I tried to create some pages using the schema "person", but the pages do not show the snippets... I used the example schema person code from their website: https://schema.org/Person#eg-1 (microdata), changed only little things like name etc:

<div itemscope itemtype="http://schema.org/Person">
    <span itemprop="name">Jane Doe</span>
    <img src="janedoe.jpg" itemprop="image" alt="Photo of Jane Joe" />
    <span itemprop="jobTitle">Professor</span>
    <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
        <span itemprop="streetAddress">
      20341 Whitworth Institute
      405 N. Whitworth
    </span>
        <span itemprop="addressLocality">Seattle</span>,
        <span itemprop="addressRegion">WA</span>
        <span itemprop="postalCode">98052</span>
    </div>
    <span itemprop="telephone">(425) 123-4567</span>
    <a href="mailto:[email protected]" itemprop="email">
    [email protected]</a> Jane's home page:
    <a href="http://www.janedoe.com" itemprop="url">janedoe.com</a> Graduate students:
    <a href="http://www.xyz.edu/students/alicejones.html" itemprop="colleague">
    Alice Jones</a>
    <a href="http://www.xyz.edu/students/bobsmith.html" itemprop="colleague">
    Bob Smith</a>
</div>

But they don't show any lightgray string...

Theoretically if I copy the source code of some page that is showing those rich snippets, I should be able to have the snippets also on my page: but I think that if I also do that, having the exactly same code, on my website they will not work, and maybe there is something else that I don't know?

2

There are 2 answers

2
unor On

Google Search does not provide Rich Snippets for persons (according to their documentation).

Their Rich Snippets for reviewed Products, authored Recipes, and authored Reviews/Ratings may reference a Person though.

(And even if Google Search would support a Person Rich Snippet, note that Google never guarantees displaying a Rich Snippet for your results.)

2
Mark B On

Did you test your page with Google's Structured data testing tool?

Did you check when Google indexed this page last in Google Webmaster Tools? Did you check if there were any structured data errors showing in Google Webmaster Tools?

Note that it may take several weeks from the time Google indexes a page with structured data before they actually start showing it on search results. Also Google doesn't guarantee that any structured data they find on your site will ever be shown in search results.