默认生成的sitemaps.xml文件中只包含文档链接。用下面的方法将栏目的目录也加入到sitemap文件中。
在admingooglemap.inc.php文件中,找到
引用
; $today = date('Y-m-d');
;$domain = SITE_URL;
;$sm;;=& new google_sitemap();
;$smi;=& new google_sitemap_item($domain, $today, 'daily', '1.0');
;$sm->add_item($smi);
在这段语句后面加入,下面的就可以了。
$cat = $db->query("SELECT * FROM ".DB_PRE."category ORDER BY `catid` ASC LIMIT 0 , $num");
while($r = $db->fetch_array($cat))
{
; $smi;=& new google_sitemap_item($domain.$r['url'], $today, 'daily');
; $sm->add_item($smi);
}
;