資源描述:
《ecshop網(wǎng)站地圖自動(dòng)生成插件》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。
1、使用過(guò)ECSHOP的朋友都知道ECSHOP后臺(tái)有一個(gè)生成google網(wǎng)站地圖的功能:ECSHOP自帶的sitemaps功能主要涉及的文件有:/sitemaps.php/admin/sitemaps.php/admin/includes/cls_google_sitemap.php這幾個(gè)文件,根據(jù)這個(gè)思路,咱們可以依葫蘆畫瓢,對(duì)原來(lái)的程序稍做修改,開(kāi)發(fā)出一個(gè)html格式的百度網(wǎng)站地圖新建:/sitemap_baidu.php/admin/sitemap_baidu.php/admin/includes/cls_baidu_sitemap.php/admin/sitemap
2、_baidu.php
3、$*/define('IN_ECS',true);百度網(wǎng)站地圖:http://www.taoyuan99.com/sitemap.htmlrequire(dirname(__FILE__).'/includes/init.php');/*檢查權(quán)限*/admin_priv('baidu_map');/*------------------------------------------------------*///--生成站點(diǎn)地圖/*------------------------------------------------------*/include_once(
4、'includes/cls_phpzip.php');include_once('includes/cls_baidu_sitemap.php');$domain=$ecs->url();$serurl=$_SERVER['HTTP_HOST'];global$shopname;$sql="SELECTvalueFROM".$ecs->table('shop_config')."WHEREcode='shop_name'";$shopname=$db->GetOne($sql);/*$sm->getconfig();*/$sm=&newgoogle_sitemap($s
5、hopname,$serurl);/*商品分類*/$sql="SELECTcat_id,cat_nameFROM".$ecs->table('category')."ORDERBYparent_id";$res=$db->query($sql);while($row=$db->fetchRow($res)){$smi=&newgoogle_sitemap_item($domain.build_uri('category',array('cid'=>$row['cat_id']),$row['cat_name']),$row['cat_name']);$sm->add_i
6、tem($smi);}/*文章分類*/$sql="SELECTcat_id,cat_nameFROM".$ecs->table('article_cat')."WHEREcat_type=1";$res=$db->query($sql);while($row=$db->fetchRow($res)){$smi=&newgoogle_sitemap_item($domain.build_uri('article_cat',array('acid'=>$row['cat_id']),$row['cat_name']),$row['cat_name']);$sm->add_i
7、tem($smi);百度網(wǎng)站地圖:http://www.taoyuan99.com/sitemap.html}/*商品*/$sql="SELECTgoods_id,goods_nameFROM".$ecs->table('goods')."WHEREis_delete=0";$res=$db->query($sql);while($row=$db->fetchRow($res)){$smi=&newgoogle_sitemap_item($domain.build_uri('goods',array('gid'=>$row['goods_