原Ucms是没有添加网站地图(sitemap)功能,为了增加SEO功能以及百度站长sitemap提交便利。
<?php
header("Content-Type: text/xml");
echo'<?xml version="1.0" encoding="utf-8"?>';
?>
{{file ../../ascii.php}}
<urlset>
{{$set=array()}}
{{$set['cid']=0}}
{{$set['pagesize']=5000}}
{{$articles=alist($set)}}
{{loop $articles['list'] as $a}}
<url>
<loc><?php echo yuming()?>{{$a['link']}}</loc>
<lastmod>{{$a['shijian']|date('Y-m-d',this)}}</lastmod>
<changefreq>always</changefreq>
<priority>1.0</priority>
</url>
{{/loop}}
</urlset>