Google 结构化数据,用于论坛和个人资料页面

1. itemprop="text"

始终在此处添加 itemprop="text",因为 DiscussionForumPosting(已不再)指定 articleBody(参见 DiscussionForumPosting)。

2. mainEntityOfPage

mainEntityOfPage 只能为 DiscussionForumPosting 设置一次,切勿为多个 Comment 设置:
例如,检查 post.is_first_post

3. itemprop="url"

DiscussionForumPosting 的 itemscope 添加 itemprop="url"
这可确保子页面(…?page=2)上的评论与主主题页面相关联。

<link itemprop="url" href="???">

此处未设置 post.topic.url。是否有类似 @topic_view.url 的内容?

重要提示: url 的 itemprop 必须指向爬虫视图中主题的第一页:

  • 例如 https://example.org/t/topic-title/1234
  • 而不是 https://example.org/t/topic-title/1234?page=2

参见 DiscussionForumPosting – 推荐属性 – url

url: 讨论的规范 URL。在多页帖子中,将此属性设置为第一页的 URL。对于单页讨论,这通常是当前 URL。

1 个赞