我经营着一个内置于 wordpress 的板球网站,该网站已被 Google 新闻接受,但我需要通过网站管理员工具提交 XML 站点地图才能让我的文章出现。
我创建了一个非常简单的站点地图(参见下面的代码),我希望它能解决问题,但问题是:
**在我的文件目录中上传到哪里?**
您会认为很简单,但许多人似乎使用插件来生成带有 wordpress 站点的站点地图,而我很少编辑文件。
我想要的结果是:http ://cricketyorkshire.com/newssitemap.xml
谢谢!
--
<?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.example.org/business/article55.html</loc>
<news:news>
<news:publication>
<news:name>Cricket Yorkshire</news:name>
<news:language>en</news:language>
</news:publication>
<news:genres>PressRelease, Blog</news:genres>
<news:publication_date>2015/07/16</news:publication_date>
<news:title>How does the month of Ramadan affect cricketers? </news:title>
<news:keywords>cricket, ramadan, religion, sports, yorkshire</news:keywords>
</news:news>
</url>
</urlset>