微觀數據schema.org設置我的網頁這樣的schema.org結構:問題與谷歌加
<html itemscope="" itemtype="http://schema.org/WebPage">
<head>
...some metadate about webpage...
</head>
<body>
<div itemscope="" itemtype="http://schema.org/NewsArticle">
...some metadate about newsartilce...
</div>
</body>
</html>
首先,我想知道這是否是正確的嗎?
如果是的話,我有這樣一個問題:
當我把我的NewsArticle鏈接到谷歌加,它顯示了這樣的鏈接在谷歌加: http://edition.cnn.com/
但是,當我更改HTML標籤爲此:
<html itemscope="" itemtype="http://schema.org/NewsArticle">
它這樣表示(在文章格式)在谷歌加: http://amanpour.blogs.cnn.com/2014/05/01/lagarde-ukraine-loan-not-without-risk/
我必須結構改成這樣:
<html itemscope="" itemtype="http://schema.org/NewsArticle">
<head>
...some metadate about newsartilce...
</head>
<body>
....
</body>
</html>
那麼你建議我改變所有頁面的html的itemtype? – user3307827