2024年10月28日
判断内容页正文是否包含图片,若无图片则显示广告:
<?php
$string = $navinfor['newstext']; // 内容字段
$some = "<img ";
$num = explode($some, $string);
if(count($num) > 1) { // 判断内容中是否有图片
?>
[!--newstext--]
<?php
} else {
?>
<div id="ad">这里放你的广告
2024年10月28日
[e:loop={'news',10,18,0,"title like '%".$class_r[$GLOBALS['navclassid']]['classname']."%'",""}]
<a target="_blank" href="<?=$bqsr['titleurl']?>" title="<?=$bqr['title']?>"><?=esub($bqr[title],32,'…')?></a>
[/e
2024年10月28日
调用当前栏目的缩略图
示例代码:
[e:loop={"select classimg from [!db.pre!]enewsclass where classid='$GLOBALS[navclassid]'",1,24,0}]
<img src="<?=$bqr[classimg]?$bqr[classimg]:'/e/data/images/notimg.gif'?>" width="300" height="300">
[/e:loop]
如果没有
2024年10月28日
打开 dede/templets/index_body.htm 文件
找到 $(function(){ $.get("index_testenv.php",function(data) { if(data !== '') { $("#__testEvn").html(data); } })})
删除或注释掉该段代码
2024年10月28日
插入PHP代码:
在模板对应位置插入以下代码:
<?php include(ECMS_PATH.'header.html'); ?>
文件路径:
header.html是HTML页面的名称,根据实际情况修改。