google怎么知道网站的日期

How do google know the date of the website

当我在 Google 上搜索内容时,我注意到有些网站显示了日期,而有些则没有。我搜索了一段时间没有找到答案。

Google 如何知道您网站页面的发布日期? meta 标签或站点地图中包含日期信息吗?

谁能帮帮我?谢谢。

Google 拥有各种技术来抓取网站以获取相关信息。网站日期将是关键信息。有些人仍然在他们的 SEO 代码标题中做元标记。他们可能会将日期放在元标记中。

我使用 json 来做这件事,它对我有用 这是示例代码,您可以根据日期更改它(它也有一些 extera 参数)

    <!-- JSON-LD markup generated by Google Structured Data Markup Helper. -->
<script type="application/ld+json">
{
  "@context" : "http://schema.org",
  "@type" : "Article",
  "name" : "your name",
  "headline" : "headline",
  "author" : {
    "@type" : "Organization",
    "name" : "name"
  },
  "datePublished" : "2017-04-22 01:38:22",
  "dateModified" : "2017-04-22 01:38:22",
  "image" : { "@type": "ImageObject", "url" : "https://....",
            "height" : "352px",
            "width" :"800px",
            "thumbnail" : "https://..."
            },
  "articleBody" : "",
    "url" : "",
    "publisher" : {
    "@type" : "Organization",
    "name" : "",
    "logo" : { "@type": "ImageObject", "url": "https://...."}
  }
}
</script>