使用帝国灵动标签生成sitemap
为了加快网站的收录有时需要生成sitemap,后台使用帝国管理,现在介绍下如何使用帝国生成sitemap
主要的思路是先用灵动标签将表中的url调用出来,生成url结构,然后将内容放入自定义页面中既可以了
<?='<?xml version="1.0" encoding="UTF-8"?>'?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
[e:loop={60,30000,0,0,'','newstime DESC'}]
<url>
<loc>http://ww.empirecms.com<?=$bqsr['titleurl']?></loc>
<lastmod><?=date('Y-m-d',$bqr[newstime])?></lastmod>
<changefreq>monthly</changefreq>
<priority>0.7</priority>
</url>
[/e:loop]
[e:loop={61,30000,0,0,'','newstime DESC'}]
<url>
<loc>http://ww.empirecms.com<?=$bqsr['titleurl']?></loc>
<lastmod><?=date('Y-m-d',$bqr[newstime])?></lastmod>
<changefreq>monthly</changefreq>
<priority>0.7</priority>
</url>
[/e:loop]
</urlset>
然后在刷新任务中定时刷新
最后生成的效果如图
王凯
5月 5, 2017 1:46 上午
看着还不错