[e:loop={"select * from phome_ecms_news where title like '%这里是关键词%' and checked=1 order by newstime desc limit 10",10,24,0}] <a href="<?=$bqsr[titleur…
这个语法用来调用[指定分类][指定条件]的所有tags [e:loop={"select * from [!db.pre!]enewstags order by num desc limit 10",0,24,0}] <li><a href="<?=$public_r[newsurl]?>e/tags/?tagid=<?=$bqr['tagid']?>" target="_blank"><?=…
标题包含关键字①.比较粗糙的匹配,可能不太精确:title like '%$navinfor[keyboard]%' ②.精确的匹配,比较消耗资源:title regexp '(^|,)$navinfor[keyboard]($|,)'关键字相同①.比较粗糙的匹配,可能不太精确:keyboard l…
[e:loop={"select classname,classpath from [!db.pre!]enewsclass where bclassid=0 order by classid ",0,24,0}] <a href="<?=$public_r[newsurl]?><?=$bqr[classpath]?>" title="<?=$bqr[classname]?>"><?=$bqr…
头条调用方法 1 [e:loop={'selfinfo',5,13,0,'firsttitle=2'}]<a href="<?=$bqsr[titleurl]?>" target="_blank"><?=esub($bqr[title],24)?></a>[/e:loop] 推荐调用方法 1 [e:loop={'selfinfo',1,13,0, 'isgood=4'}]<li><a href=&qu…
前面我们探讨了调用{dede:likewords}为dedecms添加相关搜索词,如果要调用含有某一关键词的文章可以实现吗?比如ytkah的网站有很多文章中含有“微信”的词,那么想在网站首页.频道页.文章页等页面调用含有“微信”这个词的一些文章,怎么调用呢?其实只要几行代码就够了 {dede:arclist row='5' titlelen='36' orderby='pubdate' keyword='微信,公众号' typeid='栏目id'} <li>[field:textlink/]&…
这里简单整理下灵动标签下的常用标签 标题名称:<?=$bqr['title']?>  <?=esub($bqr[title],22)?> 限制字符22个 标题链接:<?=$bqsr['titleurl']?> 副标题:<?=esub($bqr[ftitle],20)?> 标题图片: <?=$bqr['titlepic']?> 内容简介: <?=$bqr['smalltext']?>   <?=esub($bqr[smalltex…
<? $bclassid = $class_r[$GLOBALS[navclassid]][bclassid]; //获取当前父栏目ID ?> [e:loop={"select classid,classname,classpath from [!db.pre!]enewsclass where bclassid = ‘$bclassid’ order by classid”,0,24,0}]<!-取得父栏目下的子栏目-> <li><a href=”&l…
[e:loop={栏目ID/专题ID,显示条数,操作类型,只显示有标题图片,附加SQL条件,显示排序}] <a href="<?=$bqsr[titleurl]?>" target="_blank"><?=$bqr[title]?></a><br> [/e:loop] 控制标题字数:<?=esub($bqr[title],30)?>副标题:<?=esub($bqr[ftitle],20)?…
帝国CMS万能标签标题截取后自动加入省略号,没有达到字数的则不加省略号完美解决方案1.打开e/class/connect.php  搜索 if(!empty($subtitle))//截取字符  大约在2224行 在下面加入代码 if($r[title] != $r[oldtitle])             {                     $value=sub($value,0,$subtitle,false,'...');             }修改后代码如下: if(!e…