2013-06-26 135 views
0

我在我的wordpress網站上設置了og:image meta標籤,並且所有工作都很好,圖像縮略圖顯示在除iPhone以外的所有設備上,那裏沒有縮略圖在所有。我不知何故設法讓它在幾天前工作,但它看起來很模糊,現在當我試圖解決這個問題時,圖像已經消失了。我使用Facebook的調試工具,並沒有任何錯誤,我不知道什麼是錯的,也許我在這裏錯過了什麼?謝謝你的幫助。Facebook分享圖像縮略圖沒有顯示在iPhone上

這裏是我的代碼:

<meta property="og:image" content="http://somepage.com/someimage3.png" /> 
<meta property="og:image:type" content="image/png" /> 
<meta property="og:image:width" content="403" /> 
<meta property="og:image:height" content="403" /> 
<meta property="og:description" content="some description" /> 
<meta property="og:title" content="some title"/> 
<meta property="og:url" content="http://somepage.com" /> 

回答

0

請務必使用圖像URL的絕對路徑。

<meta property="og:image:type" content="http://www.somepage.com/images/imageName.png" /> 
相關問題