tags:

views:

55

answers:

2

I would like to make the author of a page appear in Google Rich Snippets.

Is it possible to do that with Microformats?

+1  A: 

See the "People" microformat documentation for Google Rich Snippets. Here's the overview of how the snippets work. After filling in the vCard, make sure to submit it to Google so it gets picked up.

Note that it's still an experimental feature and it appears they're mostly focusing on reviews and social networking, so you're not at all assured that they'll display the vCard you add, or will know that it's the page author. But it's easy enough to add.

Sample (from the documentation above):

<div class="vcard">
<div class="fn">John Smith</div>
<span class="nickname">Smithy</span>
<span class="url">http://www.example.com&lt;/span&gt;
<span class="org">ACME</span>
<span class="adr">
 <span class="locality">Albuquerque</span>
</span>
<span class="title">Engineer</span>
<a href="http://darryl-blog.example.com/" rel="friend">Darryl</a>
</div>
Jon Galloway
A: 

AFAIK it's only done for Google Scholar and there's no other way yet.

porneL