首页 > CMS > 帝国Empire > 正文

帝国CMS首页loop标签调用TAGS

2024-08-30 19:07:17
字体:
来源:转载
供稿:网友

帝国CMS首页无法调用TAGS,但是本人整理了一段可以使用的代码分享给大家。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[e:loop={0,13,3,0}]
          <?php
$fr=$empire->fetch1("select infotags from diansui_ecms_news_data_1 where id='$bqr[id]'");
?>
<?php
$alltag="";
$tag=explode(",",$fr[infotags]);
for($t=0;$t<count($tag);$t++)
{
$alltag.='<a href="/tags-'.urlencode($tag[$t]).'-0.html">'.$tag[$t].'</a>';
}
?>
<?php
if($bqr[titlepic])
{
?>
<li class='clearfix'><span class='fl'><a href='<?=$bqsr['titleurl']?>'  target='_blank' rel='nofollow'><img src='<?=$bqr['titlepic']?>' alt='<?=$bqr['title']?>' /></a></span><h3><a href='<?=$bqsr['titleurl']?>' title='<?=$bqr['title']?>' target='_blank'><?=$bqr['title']?></a></h3><p><?=$bqr['smalltext']?>...<a href='<?=$bqsr['titleurl']?>' title='更多' target='_blank'>[更多]</a></p><div class='mn-lis-tit'><span class='mn-date'><?=date('Y-m-d',$bqr[newstime])?></span><span class='mn-category ml25'>类目:<a href='<?=$bqsr[classurl]?>'><?=$bqsr[classname]?></a></span><span class='mn-keyword ml25'>关键词:<?=$alltag?>
</span></div></li>
<?php
}
else
{
?>
<li class='clearfix border'><h3><a href='<?=$bqsr['titleurl']?>' title='<?=$bqr['title']?>' target='_blank'><?=$bqr['title']?></a></h3><p><?=$bqr['smalltext']?>...<a href='<?=$bqsr['titleurl']?>' title='更多' target='_blank'>[更多]</a></p><div class='mn-lis-tit'><span class='mn-date'><?=date('Y-m-d',$bqr[newstime])?></span><span class='mn-category ml25'>类目:<a href='<?=$bqsr[classurl]?>'><?=$bqsr[classname]?></a></span><span class='mn-keyword ml25'>关键词:<?=$alltag?></span></div></li>
<?php
}
?>
[/e:loop]
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表