智慧建站平台,千套网站模板,免费随心选!

您现在的位置: 首页>>网站教程

分享帝国cms网站优化使tags伪静态的实现方法

来源: 发布时间:2019-11-30热度:619 ℃
帝国cms网站优化值tags伪静态的实现步骤如下:1.修改e/class/t_functions.php中的sys_eShowTags函数代码如下://显示TAGSfunction sys_eShow···

分享帝国cms网站优化使tags伪静态的实现方法

帝国cms网站优化值tags伪静态的实现步骤如下:

1.修改e/class/t_functions.php中的sys_eShowTags函数

代码如下:

//显示TAGS
function sys_eShowTags($cid,$num=0,$line=0,$order='',$isgood='',$isgoodshow='',$showjg='',$shownum=0,$cs=''){
global $empire,$dbtbpre,$public_r,$navinfor;
$str='';
if(empty($showjg))
{
$showjg='   ';
}
$ln=0;
if($cid=='selfinfo')
{
if(empty($navinfor['infotags']))
{
return '';
}
$jg='';
$r=explode(',',$navinfor['infotags']);
$count=count($r);
for($i=0;$i<$count;$i++)
{
$ln++;
$br=&#39;&#39;;
if($line)
{
if($ln%$line==0)
{
$br=&#39;
&#39;;
}
}
$str.=$jg.&#39;<a href="&#39;.$public_r[newsurl].&#39;e/tags/?tagname=&#39;.urlencode($r[$i]).$cs.&#39;" target="_blank">&#39;.$r[$i].&#39;</a>&#39;
.$br;
$jg=$br?&#39;&#39;:$showjg;
}
}
else
{
$and=&#39;&#39;;
$where=&#39;&#39;;
if($cid)
{
$where=strstr($cid,&#39;,&#39;)?"cid in ($cid)":"cid=&#39;$cid&#39;";
$and=&#39; and &#39;;
}
if($isgood)
{
$where.=$and.&#39;isgood=1&#39;;
}
if($where)
{
$where=&#39; where &#39;.$where;
}
$order=$order?&#39; &#39;.$order:&#39; tagid desc&#39;;
$limit=&#39;&#39;;
if($num)
{
$limit=&#39; limit &#39;.$num;
}
//推荐标红
$gfont1=&#39;&#39;;
$gfont2=&#39;&#39;;
if($isgoodshow)
{
if(strstr($isgoodshow,&#39;r&#39;))
{
$gfont1=&#39;<font color="red">&#39;;
$gfont2=&#39;</font>&#39;;
}
if(strstr($isgoodshow,&#39;s&#39;))
{
$gfont1=$gfont1.&#39;&#39;;
$gfont2=&#39;&#39;.$gfont2;
}
}
$jg=&#39;&#39;;
$snum=&#39;&#39;;
$sql=$empire->query("select tagid,tagname,num,isgood from {$dbtbpre}enewstags".$where." order by".$order.
$limit);
while($r=$empire->fetch($sql))
{
if($shownum)
{
$snum=&#39;(&#39;.$r[num].&#39;)&#39;;
}
$font1=&#39;&#39;;
$font2=&#39;&#39;;
if($isgoodshow&&$r[isgood])
{
$font1=$gfont1;
$font2=$gfont2;
}
$ln++;
$br=&#39;&#39;;
if($line)
{
if($ln%$line==0)
{
$br=&#39;
&#39;;
}
}
//$str.=$jg.&#39;<a href="&#39;.$public_r[newsurl].&#39;e/tags/?tagid=&#39;.$r[tagid].$cs.&#39;" target="_blank">&#39;.$font1.$r[tagname].
$snum.$font2.&#39;</a>&#39;.$br;
$str.=$jg.&#39;<a href="&#39;.$public_r[newsurl].&#39;e/tags/&#39;.$r[tagid].&#39;.html" target="_blank">&#39;.$font1.$r[tagname].$snum.
$font2.&#39;</a>&#39;.$br;
$jg=$br?&#39;&#39;:$showjg;
}
}
echo $str;
登录后复制

本文地址:http://ezhuoer.com