これは新しく、Googleによって投稿されたばかりです:+1ボタンでより多くのことを行う:
今日から、Google +ユーザーが+1ボタンから直接ウェブページをサークルと簡単に共有できるようになりました。通常どおりページを+1し、新しい[Google+で共有]オプションを探します。
それでどうやってこれをしますか?+スニペットを使用
+1ボタンからコンテンツを共有すると、共有ボックスにリンク、画像、説明が自動的に追加されます。これらを「+スニペット」と呼びます
本当の詳細は、Google Webmaster Centralブログにあります:Google +の改善を最大限に活用します。
+1ボタンを使用すると、訪問者はGoogle+のページへのリンクを共有できます。
+ Snippetの各属性を含むサンプルコード:
<body itemscope itemtype="http://schema.org/Article">
<h1 itemprop="name">This is the article name</h1>
<img itemprop="image" src="thumbnail.jpg" />
<p itemprop="description">This is the description of the article.</p>
</body>
この記事では、+ snippetsの構成ツールと呼ばれるものを使用することを提案しています。いくつかの入力パラメーターがありますが、最も単純な例は
<!-- Update your html tag to include the itemscope and itemtype attributes -->
<html itemscope itemtype="http://schema.org/Article">
<!-- Add the following three tags inside head -->
<meta itemprop="name" content="Title Of Your +1 Content">
<meta itemprop="description" content="This would be a description of the content your users are +1ing">
<meta itemprop="image" content="images/cool-image.png">