十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
zblog仿站乐园有好多淘宝客的模板的,可以去参考下,隐藏的不建议使用了,百度现在对隐藏代码很敏感的,一旦查出,k站是没商量的,有很多漂亮的zblog淘宝客模板不隐藏成交量也很搞的。
创新互联公司-专业网站定制、快速模板网站建设、高性价比鲁山网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式鲁山网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖鲁山地区。费用合理售后完善,10余年实体公司更值得信赖。
网站的广告位的添加,具体要针对什么类型的网站,比如zblog分为zblogasp和zblogphp两个版本,本文为大家介绍的是zblogasp版本的。
1、打开zblog后台,左侧导航栏打开侧栏管理(zblog的侧栏管理非常的赞,直接把左侧的板块拖到到右侧,然后文件重建就可以看到效果了)
2、点击“新建模块”新建一个模块,如下图:
填写模块名称为“赞助广告”当然也可以选择隐藏模块标题,在底下的内容部分放上你在百度联盟或者谷歌联盟获得的广告代码(注意广告尺寸,右侧栏的广告一般250*250),然后提交。
3、回到侧栏管理,找到刚才新建的模块直接拖到到右侧的侧栏里面(记住千万不要用ie浏览器不支持的推荐谷歌火狐),然后文件重建下,zblog添加广告位就完成了。
后台,侧栏管理,实在不行,找后台文件删除
看看官方的wiki代码
header("Content-type: text/xml");header('HTTP/1.1 200 OK');require'zb_system/function/c_system_base.php';global$zbp;$zbp-host ='http://'. $_SERVER['SERVER_NAME'] .'/';$str ='?xml version="1.0" encoding="UTF-8"?';$str .='urlset xmlns="" xmlns:mobile=""';if(!isset($_GET['index'])) { $str .='url'; $str .='loc'. $zbp-host .'/loc'; $str .='mobile:mobile type="pc,mobile"/'; $str .='lastmod'. date('Y-m-d', time()) .'/lastmod'; $str .='changefreqdaily/changefreq'; $str .='priority1.0/priority'; $str .='/url'; $allCats = $zbp-GetCategoryList();foreach($allCatsas$cat) { $str .='url'; $str .='loc'. $cat-Url .'/loc';// $str .= 'mobile:mobile type="pc,mobile"/';$str .='lastmod'. date('Y-m-d', time()) .'/lastmod'; $str .='changefreqdaily/changefreq'; $str .='priority0.8/priority'; $str .='/url'; } $allTags = $zbp-GetTagList();foreach($allTagsas$tag) { $str .='url'; $str .='loc'. $tag-Url .'/loc';// $str .= 'mobile:mobile type="pc,mobile"/';// $str .= 'lastmod' . date('Y-m-d', time()) . '/lastmod';$str .='changefreqweekly/changefreq'; $str .='priority0.6/priority'; $str .='/url'; } $allAuthors = $zbp-GetMemberList('*',array(array('','mem_ID',1),array('','mem_Articles',0)),array('mem_Level'='ASC'),2000,null);foreach($allAuthorsas$member) { $str .='url'; $str .='loc'. $member-Url .'/loc';// $str .= 'mobile:mobile type="pc,mobile"/';// $str .= 'lastmod' . date('Y-m-d', time()) . '/lastmod';$str .='changefreqweekly/changefreq'; $str .='priority0.6/priority'; $str .='/url'; }}else{//文章$index = $_GET['index']; $db = $zbp-db-sql-get(); $sql = $db-select($zbp-table['Post'])-where(array('=','log_Status','0'))-orderBy(array('log_PostTime'='DESC'))-limit(array(1000* $index,1000))-sql; $array = $zbp-GetListType('Post', $sql);foreach($arrayas$post) { $str .='url'; $str .='loc'. $post-Url .'/loc';// $str .= 'mobile:mobile type="pc,mobile"/';$str .='lastmod'. $post-Time('Y-m-d') .'/lastmod'; $str .='changefreqmonthly/changefreq'; $str .='priority0.4/priority'; $str .='/url'; }}$str .='/urlset';echo$str;unset($str);?
sitemap,zlbog php 版本写法, 美食汇 网站地图 ,zblog版本,其他框架,请自行获取文章函数
nginx 重定向配置
rewrite ^/sitemap\.xml$/sitemap.phplast;