名站分类目录为大家提供帝国cms系统程序各种教程,帝国安装教程,帝国插件教程,帝国模板说明等。
帝国CMS内容页怎么调用TAG标签、动态URL、伪静态URL?(帝国CMS调用tag标签、动态url和伪静态url的方法)
很多的朋友在使用帝国CMS程序的时候,会有很对的问题不知道如何解决,例如最近很多小伙伴经常问到国CMS内容页怎么调用TAG标签、动态URL、伪静态URL呢?今天帝国CMS模板网小编就针对这个问题,来简单的为大家分享一些实现方法,告诉大家帝国CMS调用tag标签、动态url和伪静态url的方法,下面就来跟帝国CMS模板小编一起来看看如何实现吧!
内容页调用tag,按tagname调用:
<div class="tagsline">Tags:<? $a="$navinfor[infotags]"; $str=str_replace(',', ',', $a); $tag=''; $t= explode(",", $str); for($i=0;$i<count($t);$i ) { if($t[$i]) { $tagslink="[!--news.url--]e/tags/?tagname=".urlencode($t[$i])."&tempid=1"; $tag.="<a href='$tagslink' target='_blank'>".$t[$i]."</a> "; } } echo $tag; ?> </div>
或,按tagname调用:
<?php程序 $fr=$empire->fetch1("select infotags from {$dbtbpre}ecms_news_data_{$navinfor[stb]} where id='$navinfor[id]'"); $infotags=$fr['infotags'];//这个就是infotags字段内容 $tag=''; $t=explode(',',$infotags);//去逗号 $d=count($t); for($i=0;$i<count($t);$i ) { if($t[$i]) { $tagslink="[!--news.url--]e/tags/?tagname=".urlencode($t[$i])."&tempid=1"; $tag.="<a href='$tagslink' target='_blank'>".$t[$i]."</a> "; } } echo $tag; ?>
或,按id调用:
<? $tbname=$class_r[$navinfor['classid']]['tbname']; $ftbname=$dbtbpre."ecms_".$tbname."_data_".$navinfor['stb']; $hlt = $empire->fetch1("select infotags from {$ftbname} where id='$navinfor[id]'"); $a=$hlt[infotags]; $str=str_replace(',', ',', $a); $tag=''; $t= explode(",", $str); for($i=0;$i<count($t);$i ) { if($t[$i]) { $datar=$empire->fetch1("select tagid from {$dbtbpre}enewstags where tagname='$t[$i]' limit 1"); $tagslink="[!--news.url--]e/tags/?tagid=".$datar[tagid].""; $tag.="<a href='$tagslink' target='_blank'>".$t[$i]."</a> "; } } echo $tag; ?>
注释:
限制数量,把$i
mid=1数据模型id tempid=1模型的模板id orderby排列方式 classid=34栏目id &line=5调用条数
如:上面的 &tempid=1
如果想用静态以ID的hTML 可以参考下面这个
<p >本文标签:<? $tbname=$class_r[$navinfor['classid']]['tbname']; $ftbname=$dbtbpre."ecms_".$tbname."_data_".$navinfor['stb']; $hlt = $empire->fetch1("select infotags from {$ftbname} where id='$navinfor[id]'"); $a=$hlt[infotags]; $str=str_replace(',', ',', $a); $tag=''; $t= explode(",", $str); for($i=1;$i<count($t);$i ) { if($t[$i]) { $datar=$empire->fetch1("select tagid from {$dbtbpre}enewstags where tagname='$t[$i]' limit 1"); $tagslink="[!--news.url--]tag/".$datar[tagid].".html"; $tag.="<a href='$tagslink' style='color:red;font-size:14px' target='_blank'>".$t[$i]."</a> "; } } echo $tag; ?></p>
OK,教程到这里就结束了,是不是很简单呢?具体的大家自行去测试哈!
好了这篇帝国的教程就说到这里,希望可以帮助大家。声明.本站内容来自互联网,目的是分享阅读,如果侵犯了你的权益请联系本站删除。,帝国CMS,内容页,TAG标签,动态URL,伪静态URL帝国cms系统程序搜索页怎么伪静态?(帝国CMS搜索页伪静态实现的方法)
帝国CMS程序建站,经常会碰到很多的问题,例如经常会有很多小伙伴问到帝国cms系统程序搜索页怎么实现伪静态呢?今天帝国CMS模板小编就针对这个问题来为大家分享,告诉大家帝国CMS搜索页伪静态实现的方法,下面一起跟帝国cms系统程序模板网一起来看看吧: