似乎schema.org/Review无法再被Google搜索所识别,或者我犯了一个错误

问题描述 投票:0回答:1

几天前我收到一条消息,说Google搜索引擎无法识别我的ObjectType'ItemReviewed'。

我是电影网站上的合作者,并根据自己的评论实施schema.org。


    <div itemprop="review" itemscope itemtype="http://schema.org/Review">
    <span itemprop="reviewBody">

    <span itemprop="itemreviewed">Title of the movie</span>

    <IMG>itemprop="image"</IMG>


    <img border="0" src="https://example.com/wp-content/img/30star.png" alt="rating" />
    <div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating"><meta itemprop="worstRating" content = "0"/>Rating: <span itemprop="ratingValue">3</span> / <span itemprop="bestRating">5</span></div>
    Review by <span itemprop="author">Selina</span> op <meta itemprop="datePublished" content="2020-02-13">13 februari 2020<p></div>


有人可以帮我吗。直到几天前,它对您的效果还不错。

[注意:我知道google最近更改了企业的标记,因此评级不是自私的,但这是电影博客,而评级是对电影而非Websote进行评级。我应该使用其他标记吗?

我们正在谈论真正的,独立的,无偿的社论评论

schema.org json-ld structured-data
1个回答
0
投票

Google最近开始报告评论。

在您的情况下,您已在项目范围之外标记了itemprop =“ review”。除非您没有共享所有代码,否则哪个无效?

您还标记了已评论的商品。它应该是带有大写R的itemReviewed。您不应将评论放置在另一个项目中并同时使用itemReviewed。他们是做同一件事的不同方法。

您的itemReviewed只是一些文字。这被解释为“事物”。 Google仅支持查看非常有限的类型列表,其中不包括基本的事物:

https://developers.google.com/search/docs/data-types/review-snippet

电影在列表中,我怀疑您正在查看的电影。因此,您需要标记电影,然后将评论放入带有属性评论的评论中,或者将电影放入带有属性itemReveiwed的评论中。

© www.soinside.com 2019 - 2024. All rights reserved.