方法1、调用信息的全部tag
[e:loop={"select id, title, titleurl, smalltext, newstime, titlepic from [!db.pre!]ecms_news order by id desc limit 30",0,24,0}]
fetch1("select infotags from {$dbtbpre}ecms_news_data_1 where id='$bqr[id]'");
$tag1=''.$fr[infotags].'';
$r_tag=explode(",",$tag1);
{
for($i=0;$i".$r_tag[$i]." ";
}
if(empty($fr[infotags]))
{
$tags="无";
}
}
?>
=esub($bqr[title],108)?> | =$tags?>
[/e:loop]
或[e:loop={34,10,0,0}]格式
限制数量,把$i
方法2、调用信息的tag时,可控制输出个数
[e:loop={"select id, title, titleurl, smalltext, newstime, titlepic from [!db.pre!]ecms_news order by id desc limit 30",0,24,0}]
fetch1("select infotags from {$dbtbpre}ecms_news_data_1 where id='$bqr[id]'");
$tag1=''.$fr[infotags].'';
$r_tag=explode(",",$tag1);
for($p=0;$i
=esub($bqr[title],108)?> | =$r_tag[0]?> =$r_tag[1]?> =$r_tag[2]?> =$r_tag[3]?>
[/e:loop]
或[e:loop={34,10,0,0}]格式
限制数量,把$i ----------------------------------------------------------------------------- 方法3、调用信息的tag时,可控制输出个数
[e:loop={34,10,0,0}]
=$bqr['title']?>
$tbname=$class_r[$bqr[classid]][tbname];
$fb=$bqr[stb];
$ftbname=$dbtbpre."ecms_".$tbname."_data_".$fb;
$navinfor['infotags'] = $empire->gettotal("select infotags as total from $ftbname where id='$bqr[id]'"); //结果赋值给$navinfor就是为了使用 showtags标签的selfinfo
?>
Tags:[showtags]'selfinfo',10,0,'',0,'',' ',0,'','tagname'[/showtags]
[/e:loop]
注释:
[showtags]'selfinfo',10,0,'num desc',0,'s,r',' ',1,'tagname'[/showtags]
'selfinfo'=当前信息ID,
10=调用总数量,
0=每行显示数量,
num desc=显示排序,
0=只显示推荐的(0为不显示,1为显示),
s,r=推荐TAGS属性(s为加粗,r为加红),
''=显示间隔符(一般为空格符: ),
1=显示信息数量(0为不显示,1为显示),
'tagname'=链接使用变量(一般为tagname和tagid)
版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!
转载请注明: 帝国CMS灵动标签调用文章信息时获取tag标签的多种方法