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)
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?
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.)