如何测试/验证我的 Google 新闻站点地图?
如果我去搜索控制台,我可以选择添加/测试站点地图。但是它说我有一个无效的 XML 标签:
父标签:publication 标签:keywords
但我可以看到这个标签是有效的,所以我认为验证器正在将它作为普通站点地图进行测试,而不是特定于 googlenews 的站点地图: https: //support.google.com/news/publisher/answer/74288?hl= en#submitsitemap
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9">
<url>
<loc>
http://www.website.com/page
</loc>
<news:news>
<news:publication>
<news:name>Sitename/news:name>
<news:language>en</news:language>
<news:keywords>Shopping</news:keywords>
</news:publication>
<news:title>Page title here</news:title>
<news:publication_date>2015-11-12T14:16:31+00:00</news:publication_date>
</news:news>
</url>
<url>
<loc>
http://www.website.com/other-page
</loc>
<news:news>
<news:publication>
<news:name>Sitename</news:name>
<news:language>en</news:language>
<news:keywords>Shopping</news:keywords>
</news:publication>
<news:title>
Page 2 title here
</news:title>
<news:publication_date>2015-11-12T12:52:03+00:00</news:publication_date>
</news:news>
</url>
<url>
如果我去谷歌的新闻工具主页,它会告诉我该网站包含在谷歌新闻中。但是如何检查我的站点地图是否正常工作?