帝国cms实现用灵动标签调用文章内容的方法
介绍下帝国cms实现网站首页用灵动标签调用文章内容的方法
以下是灵动标签的调用方法
[e:loop={'58,59,60,61',1,13,0}]
<?php
$fr=$empire->fetch1("select newstext from {$dbtbpre}ecms_news_data_{$bqr[stb]} where id='$bqr[id]'");
?>
<?=$fr[newstext]?>
[/e:loop]
思良:很多网站就是拷贝下就发布了,按照上面的代码不知道怎么用,什么代表什么都不知道,于是找了下说明。
说明:
[e:loop={栏目id,1,0,0}] //{栏目ID/专题ID,显示条数,操作类型,只显示有标题图片,附加SQL条件,显示排序}
<?php
$fr=$empire->fetch1("select newstext from {$dbtbpre}ecms_news_data_{$bqr[stb]} where id='想要掉用的文章id'");
?>
<?=$fr[newstext]?>
[/e:loop]
举例:调用本篇文章内容,帝国cms学习ID为61,本篇文章ID为1262,那么代码如下。(亲测能显示)
[e:loop={61,1,13,0}]
<?php
$fr=$empire->fetch1("select newstext from {$dbtbpre}ecms_news_data_{$bqr[stb]} where id='1262'");
?>
<?=$fr[newstext]?>
[/e:loop]