欢迎来到天天文库
浏览记录
ID:6126533
大小:84.00 KB
页数:6页
时间:2018-01-03
《ecshop网站地图自动生成插件》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、使用过ECSHOP的朋友都知道ECSHOP后台有一个生成google网站地图的功能:ECSHOP自带的sitemaps功能主要涉及的文件有:/sitemaps.php/admin/sitemaps.php/admin/includes/cls_google_sitemap.php这几个文件,根据这个思路,咱们可以依葫芦画瓢,对原来的程序稍做修改,开发出一个html格式的百度网站地图新建:/sitemap_baidu.php/admin/sitemap_baidu.php/admin/includes/cls_baidu_sitemap.php/admin/sitemap
2、_baidu.php
3、$*/define('IN_ECS',true);百度网站地图:http://www.taoyuan99.com/sitemap.htmlrequire(dirname(__FILE__).'/includes/init.php');/*检查权限*/admin_priv('baidu_map');/*------------------------------------------------------*///--生成站点地图/*------------------------------------------------------*/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);百度网站地图: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_
此文档下载收益归作者所有