当前位置: 首页 > 站长资讯 > 正文页面

织梦中英双语网站分页导航和面包屑导航制作

在英文站中列表分页导航出现“首页 上一页 下一页 末页”,当前位置:首页>about>,这样的问题改如何解决呢?本文就来解决一下这两个问题。e1t网站目录_网站网址收录与提交入口

1:列表分页英文设置教程e1t网站目录_网站网址收录与提交入口

用arc.listview.class.php覆盖include/arc.listview.class.phpe1t网站目录_网站网址收录与提交入口

调用方法:e1t网站目录_网站网址收录与提交入口

{dede:pagelist listsize='5'/}e1t网站目录_网站网址收录与提交入口

{dede:pagelist pagelang='en' listsize='5'/}e1t网站目录_网站网址收录与提交入口

pagelang:en为英文,cn为中文,默认语言中文e1t网站目录_网站网址收录与提交入口

扩展阅读:e1t网站目录_网站网址收录与提交入口

/**e1t网站目录_网站网址收录与提交入口

* 获取静态的分页列表e1t网站目录_网站网址收录与提交入口

*e1t网站目录_网站网址收录与提交入口

* @access publice1t网站目录_网站网址收录与提交入口

* @param string $list_len 列表宽度e1t网站目录_网站网址收录与提交入口

* @param string $list_len 列表样式e1t网站目录_网站网址收录与提交入口

* @return stringe1t网站目录_网站网址收录与提交入口

*/e1t网站目录_网站网址收录与提交入口

function GetPageListST($list_len,$listitem="index,end,pre,next,pageno",$pagelang)e1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

/*****************************************************************************************/e1t网站目录_网站网址收录与提交入口

if($pagelang='cn'){e1t网站目录_网站网址收录与提交入口

$uahome="首页";e1t网站目录_网站网址收录与提交入口

$uaprevious="上一页";e1t网站目录_网站网址收录与提交入口

$uanext="下一页";e1t网站目录_网站网址收录与提交入口

$ualastpage="末页";e1t网站目录_网站网址收录与提交入口

$uapage="页";e1t网站目录_网站网址收录与提交入口

$uatotal="共";e1t网站目录_网站网址收录与提交入口

$uarecords="条记录";e1t网站目录_网站网址收录与提交入口

}else{e1t网站目录_网站网址收录与提交入口

$uahome=" Home ";e1t网站目录_网站网址收录与提交入口

$uaprevious=" Previous ";e1t网站目录_网站网址收录与提交入口

$uanext=" Next ";e1t网站目录_网站网址收录与提交入口

$ualastpage=" Last Page ";e1t网站目录_网站网址收录与提交入口

$uapage=" Page ";e1t网站目录_网站网址收录与提交入口

$uatotal=" Total ";e1t网站目录_网站网址收录与提交入口

$uarecords=" Records. ";e1t网站目录_网站网址收录与提交入口

}e1t网站目录_网站网址收录与提交入口

$prepage = $nextpage = '';e1t网站目录_网站网址收录与提交入口

$prepagenum = $this->PageNo-1;e1t网站目录_网站网址收录与提交入口

$nextpagenum = $this->PageNo+1;e1t网站目录_网站网址收录与提交入口

if($list_len=='' || ereg("[^0-9]",$list_len))e1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

$list_len=3;e1t网站目录_网站网址收录与提交入口

}e1t网站目录_网站网址收录与提交入口

$totalpage = ceil($this->TotalResult/$this->PageSize);e1t网站目录_网站网址收录与提交入口

if($totalpage<=1 && $this->TotalResult>0)e1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

return "<li><span class=/"pageinfo/">".$uatotal." <strong>1</strong> ".$uapage." <strong>".$this->TotalResult."</strong>e1t网站目录_网站网址收录与提交入口

".$uarecords."</span></li>/r/n";e1t网站目录_网站网址收录与提交入口

}e1t网站目录_网站网址收录与提交入口

if($this->TotalResult == 0)e1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

return "<li><span class=/"pageinfo/">".$uatotal." <strong>0</strong> ".$uapage." <strong>".$this->TotalResult."</strong>e1t网站目录_网站网址收录与提交入口

".$uarecords."</span></li>/r/n";e1t网站目录_网站网址收录与提交入口

}e1t网站目录_网站网址收录与提交入口

$purl = $this->GetCurUrl();e1t网站目录_网站网址收录与提交入口

$maininfo = "<li><span class=/"pageinfo/">".$uatotal." <strong>{$totalpage}</strong> ".$uapage." <strong>".$this->TotalResult."</strong>e1t网站目录_网站网址收录与提交入口

".$uarecords."</span></li>/r/n";e1t网站目录_网站网址收录与提交入口

$tnamerule = $this->GetMakeFileRule($this->Fields['id'],"list",$this->Fields['typedir'],$this->Fields['defaultname'],$this->Fieldse1t网站目录_网站网址收录与提交入口

['namerule2']);e1t网站目录_网站网址收录与提交入口

$tnamerule = ereg_replace('^(.*)/','',$tnamerule);e1t网站目录_网站网址收录与提交入口

//获得上一页和主页的链接e1t网站目录_网站网址收录与提交入口

if($this->PageNo != 1)e1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

$prepage.="<li><a href='".str_replace("{page}",$prepagenum,$tnamerule)."'>".$uaprevious."</a></li>/r/n";e1t网站目录_网站网址收录与提交入口

$indexpage="<li><a href='".str_replace("{page}",1,$tnamerule)."'>".$uahome."</a></li>/r/n";e1t网站目录_网站网址收录与提交入口

}e1t网站目录_网站网址收录与提交入口

elsee1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

$indexpage="<li>".$uahome."</li>/r/n";e1t网站目录_网站网址收录与提交入口

}e1t网站目录_网站网址收录与提交入口

//下一页,未页的链接e1t网站目录_网站网址收录与提交入口

if($this->PageNo!=$totalpage && $totalpage>1)e1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

$nextpage.="<li><a href='".str_replace("{page}",$nextpagenum,$tnamerule)."'>".$uanext."</a></li>/r/n";e1t网站目录_网站网址收录与提交入口

$endpage="<li><a href='".str_replace("{page}",$totalpage,$tnamerule)."'>".$ualastpage."</a></li>/r/n";e1t网站目录_网站网址收录与提交入口

}e1t网站目录_网站网址收录与提交入口

elsee1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

$endpage="<li>".$ualastpage."</li>/r/n";e1t网站目录_网站网址收录与提交入口

}e1t网站目录_网站网址收录与提交入口

//option链接e1t网站目录_网站网址收录与提交入口

$optionlist = '';e1t网站目录_网站网址收录与提交入口

$optionlen = strlen($totalpage);e1t网站目录_网站网址收录与提交入口

$optionlen = $optionlen*12 + 18;e1t网站目录_网站网址收录与提交入口

if($optionlen < 36) $optionlen = 36;e1t网站目录_网站网址收录与提交入口

if($optionlen > 100) $optionlen = 100;e1t网站目录_网站网址收录与提交入口

$optionlist = "<li><select name='sldd' style='width:{$optionlen}px' onchange='location.href=this.options[this.selectedIndex].value;'>/r/n";e1t网站目录_网站网址收录与提交入口

for($mjj=1;$mjj<=$totalpage;$mjj++)e1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

if($mjj==$this->PageNo)e1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

$optionlist .= "<option value='".str_replace("{page}",$mjj,$tnamerule)."' selected>$mjj</option>/r/n";e1t网站目录_网站网址收录与提交入口

}e1t网站目录_网站网址收录与提交入口

elsee1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

$optionlist .= "<option value='".str_replace("{page}",$mjj,$tnamerule)."'>$mjj</option>/r/n";e1t网站目录_网站网址收录与提交入口

}e1t网站目录_网站网址收录与提交入口

}e1t网站目录_网站网址收录与提交入口

$optionlist .= "</select></li>/r/n";e1t网站目录_网站网址收录与提交入口

//获得数字链接e1t网站目录_网站网址收录与提交入口

$listdd="";e1t网站目录_网站网址收录与提交入口

$total_list = $list_len * 2 + 1;e1t网站目录_网站网址收录与提交入口

if($this->PageNo >= $total_list)e1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

$j = $this->PageNo-$list_len;e1t网站目录_网站网址收录与提交入口

$total_list = $this->PageNo+$list_len;e1t网站目录_网站网址收录与提交入口

if($total_list>$totalpage)e1t网站目录_网站网址收录与提交入口

{e1t网站目录_网站网址收录与提交入口

$total_list=$totalpage;e1t网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章