cms/ target=_blank class=infotextkey>帝国cms灵动标签,调用当前文章内容tag标签的代码。
复制代码 代码示例:
[e:loop={"SELECT * FROM seo_ecms_news WHERE id = '".$navinfor[id]."' LIMIT 0 , 30",1,24,0}]
<?
$a="$bqr[infotags]";
$str=str_replace(',', ',', $a);
$tag='';
$t= explode(",", $str);
for($i=0;$i<count($t);$i++)
{
if($t[$i])
{
$tagslink="/e/tags/?tagname=".urlencode($t[$i])."";
$tag.="<a href='$tagslink' target='_blank'>".$t[$i]."</a> ";
}
}
echo $tag;
?>
[/e:loop]