您现在的位置是:首页 > cms教程 > 帝国CMS教程帝国CMS教程
帝国cms列表页(list.var)判断推荐头条置顶并附加图标的方法
君菁2023-01-22帝国CMS教程已有人查阅
导读首先注意开启置顶:后台 》 系统 》 系统参数设置 》 信息设置 》 信息置顶设置 ,选择 栏目/标签置顶

1、首先注意开启置顶:后台 》 系统 》 系统参数设置 》 信息设置 》 信息置顶设置 ,选择 栏目/标签置顶
2、使用的代码
①、调用几级推荐、头条、置顶 ,如下调用的都是一级的推荐、头条、置顶
if(!empty($bqr[titlepic])) //图片
if($bqr[isgood]==1) //推荐
if($r[firsttitle]==1) //头条
if($r[istop]==1) //置顶
if($bqr[isgood]==1&&$bqr[firsttitle]==1&&$bqr[istop]==1) //置顶-头条-推荐 (组合使用)
②、调用全部的推荐、头条、置顶(即:把“==1”修改为“>0”)
if(!empty($bqr[titlepic])) //图片
if($bqr[isgood]>0) //推荐
if($r[firsttitle]>0) //头条
if($r[istop]>0) //置顶
if($bqr[isgood]>0&&$bqr[firsttitle]>0&&$bqr[istop]>0) //置顶-头条-推荐 (组合使用)
方法1、判断各自的(有两个或两个以上的属性,也只显示一个属性),即:只显示一个图
注释:如一个信息有“推荐”和“头条”两个属性,下面的代码也只能让其显示一个属性(那个属性在前就先显示那个)
<?=$newimg?>可以是图片 $newimg="<img src='dg2/e/data/images/saypl.gif' />";
举例:
$r[title]=esub($r[title],27,'...');
$newimg="";
if($r[istop]==1)
{
$newimg="<font color=red>[顶]</font>";
}
elseif($r[isgood]==1)
{
$newimg="<font color=red>[荐]</font>";
}
elseif($r[firsttitle]==1)
{
$newimg="<font color=red>[头]</font>";
}
$listtemp='
<li>【'.$class_r[$r[classid]]['classname'].' 】【[!--this.classname--]】'.$newimg.' <a href="[!--titleurl--]" title="[!--oldtitle--]">[!--title--]</a> <span>[!--newstime--]</span></li>
';
注释:$newimg=""; newimg为空if($r[istop]==1){$newimg="<font color=red>[顶]</font>"; 当istop=1时,newimg显示“[顶]”
php部分还可以这样写判断 格式:if -> elseif -> else 意思:“判断” 或 “2判读” 否则 “为空”
实际上就是把$newimg=""; 用else放到了最下面
实例:
$r[title]=esub($r[title],27,'...');
if($r[istop]==1)
{
$newimg="<font color=red>[顶]</font>";
}
elseif($r[isgood]==1)
{
$newimg="<font color=red>[荐]</font>";
}
elseif($r[firsttitle]==1)
{
$newimg="<font color=red>[头]</font>";
}
else
{
$newimg="";
}
$listtemp='
<li>【'.$class_r[$r[classid]]['classname'].' 】【[!--this.classname--]】'.$newimg.' <a href="[!--titleurl--]" title="[!--oldtitle--]">[!--title--]</a> <span>[!--newstime--]</span></li>
';
方法2、判断各自的(有两个或两个以上的属性,可显示多个属性),即:可显示多个图。在上面代码的基础上组合了个“两个的属性”,即:一个信息两张图注释:如一个信息有“推荐”和“头条”两个属性,在上面的代码基础上加了一个判断的语句把“推荐”和“头条”组合在一起可以显示双属性的属性语句。
即:一条信息同时显示“推荐”和“头条”两个属性
<?=$newimg?>可以是图片 $newimg="<img src='dg2/e/data/images/saypl.gif' />";
举例:
$r[title]=esub($r[title],27,'...');
$newimg="";
if($r[isgood]==1&&$r[firsttitle]==1)
{
$newimg="<font color=red>[推荐]</font> <font color=red>[头条]</font>";
}
elseif($r[isgood]==1)
{
$newimg="<font color=red>[推荐]</font>";
}
elseif($r[firsttitle]==1)
{
$newimg="<font color=red>[头条]</font>";
}
$listtemp='
<li>【'.$class_r[$r[classid]]['classname'].' 】【[!--this.classname--]】'.$newimg.' <a href="[!--titleurl--]" title="[!--oldtitle--]">[!--title--]</a> <span>[!--newstime--]</span></li>
';
注释:$newimg=""; newimg为空if($r[istop]==1){$newimg="<font color=red>[顶]</font>"; 当istop=1时,newimg显示“[顶]”
php部分还可以这样写判断 格式:if -> elseif -> else 意思:“判断” 或 “2判读” 否则 “为空”
实际上就是把$newimg=""; 用else放到了最下面
实例:同上
方法3、判断各自的,(有两个或两个以上的属性,可显示多个属性),即:可显示多个图。各自加各自的图,即:每个属性上多能加多张图
<?=$newimg?>可以是图片 $newimg="<img src='dg2/e/data/images/saypl.gif' />";
$r[title]=esub($r[title],27,'...');
$newimg="";
$top="";
$good="";
$ttitle="";
if(!empty($r[titlepic]))
{
$newimg="<font color=red>[图片]</font>";
}
if($r[istop]==1)
{
$top = "<font color=red>[置顶]</font>";
}
if($r[isgood]==1)
{
$good = "<font color=red>[推荐]</font>";
}
if($r[firsttitle]==1)
{
$ttitle = "<font color=red>[头条]</font>";
}
$listtemp='
<li>【'.$class_r[$r[classid]]['classname'].' 】【[!--this.classname--]】 '.$newimg.' '.$top.' '.$good.' '.$ttitle.' <a href="[!--titleurl--]" title="[!--oldtitle--]">[!--title--]</a> <span>[!--newstime--]</span></li>
';
注释:$newimg="";、$top="";、$good="";、$ttitle=""; 各自为空[titlepic]、[istop]==1、[isgood]==1、[firsttitle]==1 当=1时,各自显示各自的图
php部分还可以这样写判断 格式:if -> else 意思:“判断” 否则 “为空”
实际上就是把$newimg=""; 用else放到了最下面
实例:
$r[title]=esub($r[title],27,'...');
if(!empty($r[titlepic]))
{
$newimg="<font color=red>[图片]</font>";
}
else
{
$newimg='';
}
if($r[istop]==1)
{
$top = "<font color=red>[置顶]</font>";
}
else
{
$top='';
}
if($r[isgood]==1)
{
$good = "<font color=red>[推荐]</font>";
}
else
{
$good='';
}
if($r[firsttitle]==1)
{
$ttitle = "<font color=red>[头条]</font>";
}
else
{
$ttitle='';
}
$listtemp='
<li>【'.$class_r[$r[classid]]['classname'].' 】【[!--this.classname--]】 '.$newimg.' '.$top.' '.$good.' '.$ttitle.' <a href="[!--titleurl--]" title="[!--oldtitle--]">[!--title--]</a> <span>[!--newstime--]</span></li>
';
图片、置顶、一级二级推荐、一级二级头条php部分还可以这样写判断 格式:if -> elseif -> else 意思:“判断” 或 “2判读” 否则 “为空”
实际上就是把$newimg=""; 用else放到了最下面
<br>------------------方法1----------------------<br>
$r[title]=esub($r[title],27,'...');
$newimg="";
$top="";
$good="";
$ttitle="";
if(!empty($r[titlepic]))
{
$newimg="<font color=red>[图片]</font>";
}
if($r[istop]==1)
{
$top = "<font color=red>[置顶]</font>";
}
if($r[isgood]==1)
{
$good = "<font color=red>[推荐]</font>";
}
elseif($r[isgood]==2)
{
$good="<font color=red>[推荐2]</font>";
}
if($r[firsttitle]==1)
{
$ttitle = "<font color=red>[头条]</font>";
}
elseif($r[firsttitle]==2)
{
$ttitle="<font color=red>[头条2]</font>";
}
$listtemp='
<li>【'.$class_r[$r[classid]]['classname'].' 】【[!--this.classname--]】 '.$newimg.' '.$top.' '.$good.' '.$ttitle.' <a href="[!--titleurl--]" title="[!--oldtitle--]">[!--title--]</a> <span>[!--newstime--]</span></li>
';
方法1:PHP部分的格式:为空 -> if -> elseif
<br>------------------方法2----------------------<br>
$r[title]=esub($r[title],27,'...');
if(!empty($r[titlepic]))
{
$newimg="<font color=red>[图片]</font>";
}
else
{
$newimg='';
}
if($r[istop]==1)
{
$top = "<font color=red>[置顶]</font>";
}
else
{
$top='';
}
if($r[isgood]==1)
{
$good = "<font color=red>[推荐]</font>";
}
elseif($r[isgood]==2)
{
$good="<font color=red>[推荐2]</font>";
}
else
{
$good='';
}
if($r[firsttitle]==1)
{
$ttitle = "<font color=red>[头条]</font>";
}
elseif($r[firsttitle]==2)
{
$ttitle="<font color=red>[头条2]</font>";
}
else
{
$ttitle='';
}
$listtemp='
<li>【'.$class_r[$r[classid]]['classname'].' 】【[!--this.classname--]】 '.$newimg.' '.$top.' '.$good.' '.$ttitle.' <a href="[!--titleurl--]" title="[!--oldtitle--]">[!--title--]</a> <span>[!--newstime--]</span></li>
';
方法2:PHP部分的格式:if -> elseif -> else
本文标签:
很赞哦! ()
相关教程
图文教程
帝国CMS怎么更改消息提醒
帝国CMS更改消息提醒的弹窗提示教程。查找“您有新消息”源代码找到其所在的位置。例如:e/member/login/loginjs.php文件
帝国CMS登录后台提示"您的Cookie没有开启,不能登陆成功"的解决方法
如果没有动过文件特别是/e/config/config.php文件的话!请按照如下操作肯定就OK了!到你的主机或者服务器环境里找到php.ini文件(如果不知道在哪联系你的空间商就行了)找到如下:out
帝国CMS返回TAG结果页URL地址可带参数详解
mid=1数据模型id tempid=1模型的模板id orderby排列方式 classid=34栏目id line=5调用条数
帝国CMS列表页怎么调用关键字
将下面代码复制到列表内容模板(list.var),记得要选列表页:使用程序代码$ntext=strip_tags($nsmalltext);//去除内容简介里的HTML标签
相关源码
-
帝国cms7.5女性护肤搭配美妆潮流网站源码带数据4.5G本模板专为女性美容护肤行业设计,提供美容护肤、发型设计、女性健康、时尚化妆、娱乐新闻、服饰搭配等女性潮流资讯内容展示。采用帝国CMS7.5开发,同步生成电脑端和手机端,满足用户对美容时尚信息的获取需求。查看源码 -
(自适应)餐具英文外贸生活用品带下载功能网站模板免费下载为餐具及生活用品外贸企业打造的响应式网站模板,基于PbootCMS内核开发。突出产品展示与多语言支持特性,通过自适应设计确保更好客户在手机、平板、电脑等设备上获得一致浏览体验。查看源码 -
帝国cms7.5奇闻异事末解之谜模板免费下载带数据本模板基于帝国CMS7.5系统开发,为神秘现象、未解之谜类主题网站设计。包含完整的PC端、移动端及百度MIP站同步生成功能,内置火车头采集规则模块,可快速采集目标站内容资源。整体设计风格神秘大气,符合主题定位。查看源码 -
响应式粉色美容整形化妆品pbootcms网站模板开源源码该网站模板为美容整形、化妆品企业设计,采用响应式布局确保在手机、平板及PC端自动适配显示效果。基于PbootCMS内核开发,支持一键替换图文内容快速转换至其他行业应用。查看源码 -
(自适应)代理记账财务会计咨询服务个人公司网站模板该响应式网站模板为代理记账、财政咨询及财务会计类企业设计,基于PbootCMS内核开发。通过自适应手机端的HTML5技术,帮助企业高效构建专业财税服务平台查看源码 -
(PC+WAP)生活资讯百科新闻门户类pbootcms网站模板为生活资讯、百科门户类企业打造的高性能网站模板,基于PbootCMS开源内核开发,采用HTML5响应式架构,PC与手机端实时数据同步,覆盖全终端用户浏览场景。查看源码
| 分享笔记 (共有 篇笔记) |

