2013-05-29 35 views
0

所以我想讓我的頁面準備好在社交網絡上分享。 Twitter卡與Twitter元標記正常工作。 Facebook喜歡/分享與開放的圖形元標籤工作正常。但由於某些原因,Google+只是拉圖像和標題,但由於某種原因不會拉動描述。世界上哪些地方出了問題?Google+ Snippet Description

<!doctype html> 
<html itemscope itemtype="http://schema.org/Article"> 
<head> 


<meta itemprop="name"   content="Plural Marriage Debate"> 
<meta itemprop="description" content="Debate on the subject of plural marriage between Todd D. Webb and Allen W. McDaniel"> 
<meta name="description"  content="Debate on the subject of plural marriage between Todd D. Webb and Allen W. McDaniel"> 
<meta itemprop="publisher"  content="My Company Inc"> 
<meta itemprop="image"   content="http://www.example.com/20130124_224507.jpg"> 
<meta itemprop="image"   content="http://www.example.com/156.jpg"> 

<!-- Facebook Meta Tags --> 
<meta property="fb:app_id"  content="####****####***" /> 
<meta property="og:type"  content="website" /> 
<meta property="og:title"  content="Plural Marriage Debate" /> 
<meta property="og:site_name" content="My Company Inc"/> 
<meta property="og:image"  content="http://www.example.com/20130124_224507.jpg" /> 
<meta property="og:description" content="Debate on the subject of plural marriage between Todd D. Webb and Allen W. McDaniel" /> 
<meta property="og:url"   content="http://www.example.com/video.php"> 

<!-- Twitter card tags --> 
<meta name="twitter:card"   content="summary_large_image"> 
<meta name="twitter:site"   content="@ScreenName"> 
<meta name="twitter:title"   content="Plural Marriage Debate"> 
<meta name="twitter:description" content="Debate on the subject of plural marriage between Todd D. Webb and Allen W. McDaniel"> 
<meta name="twitter:creator"  content="@ScreenName"> 
<meta name="twitter:image"   content="http://www.example.com/20130124_224507.jpg"> 
<meta name="twitter:domain"   content="http://www.example.com/video.php"> 

<title>Plural Marriage Debate</title> 

回答

2

你可以看到谷歌將如何在這裏使用豐富網頁摘要工具查看您的網站:http://www.google.com/webmasters/tools/richsnippets

谷歌正在推動WebSchemas爲標準機制在網絡上嵌入元,但是,Google +會回退到OpenGraph如果這是可用的。順便提一下,當我將上面的代碼片段放到我們的工具中時,我會得到正確的輸出結果。

更有可能的是,您所看到的是最近網站重新設計的一個元素,其中我們的片段不再顯示說明。我不完全確定爲什麼做出這個決定,但它是通過設計。

+0

是的,我之前使用過該工具,並得到了相同的結果。這讓我更加困惑。所以我從Google+的迴應中猜測,我們正在消除片段中的描述,我正在經歷的是新規範,這就是它實際上應該是這樣的方式? –

+1

@TheDukeOfMarshall是的,它的行爲正確的基礎上當前的實施。 – foxxtrot