帝国CMS搜索模板调用 栏目/ID/名称/链接 /关键词/简介/时间
搜索模板调用大全
1:帝国cms搜索模板 列表内容模板(list.var) 如何调用内容信息ID?
方法1:标签调用
[!--id--]
方法2:$r变量
$r[id]
//使用$r变量需开启“使用程序代码”,
如:
$listtemp='信息id:'.$r[id].'';
2:帝国cms搜索模板 列表内容模板(list.var) 如何调用内容标题?
方法1:标签调用
[!--title--]
方法2:$r变量
$r[title]
//使用$r变量需开启“使用程序代码”,如:
$listtemp='标题:'.$r[title].'';
3:帝国cms搜索模板 列表内容模板(list.var) 如何调用内容关键词?
方法:$r变量
$r[keyboard]
//使用$r变量需开启“使用程序代码”,如:
$listtemp='关键词:'.$r[keyboard].'';
4:帝国cms搜索模板 列表内容模板(list.var) 如何调用内容描述?
方法1:标签调用
[!--smalltext--]
方法2:$r变量
$r[smalltext]
//使用$r变量需开启“使用程序代码”,如:
$listtemp='描述:'.$r[smalltext].'';
5:帝国cms搜索模板 列表内容模板(list.var) 如何调用内容链接地址?
方法1:标签调用
[!--titleurl--]
方法2:$r变量
$r[titleurl]
//使用$r变量需开启“使用程序代码”,如:
$listtemp='链接:'.$r[titleurl].'';
6:帝国cms搜索模板 列表内容模板(list.var) 如何调用内容标题图片?
方法1:标签调用
[!--titlepic--]
方法2:$r变量
$r[titlepic]
//使用$r变量需开启“使用程序代码”,如:
$listtemp='标题图片:'.$r[titlepic].'';
例子:调用内容标题图片 没有图片时显示随机图片
if(empty($r[titlepic])){$r[titlepic]='https://www.lovezheteng.com/img/rand/'.rand(1,10).'.jpg';}
$_nowclass=$empire->fetch1("select * from {$dbtbpre}enewsclass where classid='$r[classid]'");
$listtemp='
<a href="[!--titleurl--]"><img title="[!--title--] 图片" src="[!--titlepic--]" alt="[!--title--] 图片" /></a>
';
//在/img/rand/目录下,放1.jpg,2.jpg,3.jpg……10.jpg.即可实现内容无图片时,调用随机图片功能。
7:帝国cms搜索模板 列表内容模板(list.var) 如何调用随机图片?
例子:调用内容标题图片 没有图片时显示随机图片
if(empty($r[titlepic])){$r[titlepic]='https://www.lovezheteng.com/img/rand/'.rand(1,10).'.jpg';}
$_nowclass=$empire->fetch1("select * from {$dbtbpre}enewsclass where classid='$r[classid]'");
$listtemp='
<a href="[!--titleurl--]"><img title="[!--title--] 图片" src="[!--titlepic--]" alt="[!--title--] 图片" /></a>
';
//在/img/rand/目录下,放1.jpg,2.jpg,3.jpg……10.jpg.即可实现内容无图片时,调用随机图片功能。
8:帝国cms搜索模板 列表内容模板(list.var) 如何调用栏目ID?
方法1:标签调用
[!--classid--]
方法2:$r变量
$r[classid]
//使用$r变量需开启“使用程序代码”,如:
$listtemp='栏目ID:'.$r[classid].'';
例子:栏目名称带链接
$_nowclass=$empire->fetch1("select * from {$dbtbpre}enewsclass where classid='$r[classid]'");
$listtemp='
//栏目名称带链接:<a title="'.$_nowclass[classname].'" href="[!--this.classlink--]">'.$_nowclass[classname].'</a>
';
9:帝国cms搜索模板 列表内容模板(list.var) 如何调用栏目名称?
方法:$r变量+SQL语句
$_nowclass=$empire->fetch1("select * from {$dbtbpre}enewsclass where classid='$r[classid]'");
$listtemp='栏目名称:'.$_nowclass[classname].'';
//使用$r变量需开启“使用程序代码”
例子:栏目名称带链接
$_nowclass=$empire->fetch1("select * from {$dbtbpre}enewsclass where classid='$r[classid]'");
$listtemp='
栏目名称带链接:<a title="'.$_nowclass[classname].'" href="[!--this.classlink--]">'.$_nowclass[classname].'</a>
';
10:帝国cms搜索模板 列表内容模板(list.var) 如何调用栏目别名?
方法1:标签调用
[!--this.classname--]
方法2:$r变量+SQL语句
$_nowclass=$empire->fetch1("select * from {$dbtbpre}enewsclass where classid='$r[classid]'");
$listtemp='栏目别名:'.$_nowclass[bname].'';
//使用$r变量需开启“使用程序代码”.
11:帝国cms搜索模板 列表内容模板(list.var) 如何调用栏目链接?
方法1:标签调用
[!--this.classlink--]
方法2:$r变量
$r[titleurl]
tips:使用$r变量需开启“使用程序代码”,如:
$listtemp='栏目链接:'.$r[titleurl].'';
例子:栏目名称带链接
$_nowclass=$empire->fetch1("select * from {$dbtbpre}enewsclass where classid='$r[classid]'");
$listtemp='
//栏目名称带链接:<a title="'.$_nowclass[classname].'" href="[!--this.classlink--]">'.$_nowclass[classname].'</a>
';
12:帝国cms搜索模板 列表内容模板(list.var) 如何调用标题分类ID?
方法1:标签调用
[!--ttid--]
方法2:$r变量
$r[ttid]
//使用$r变量需开启“使用程序代码”,如:
$listtemp='标题分类ID:'.$r[ttid].'';
13:帝国cms搜索模板 列表内容模板(list.var) 如何调用标题分类名称?
方法1:标签调用
[!--tt.name--]
方法2:$r变量+SQL语句
$_nowtype=$empire->fetch1("select * from {$dbtbpre}enewsinfotype where typeid='$r[ttid]'");
$listtemp='
//标题分类名称带链接:<a title="'.$_nowtype[tname].'" href="[!--news.url--]'.$_nowtype[tpath].'/">'.$_nowtype[tname].'</a>
';
//使用$r变量需开启“使用程序代码”
14:帝国cms搜索模板 列表内容模板(list.var) 如何调用标题分类地址?
方法1:标签调用
[!--tt.url--]
方法2:$r变量+SQL语句
$_nowtype=$empire->fetch1("select * from {$dbtbpre}enewsinfotype where typeid='$r[ttid]'");
$listtemp='
标题分类名称带链接:<a title="'.$_nowtype[tname].'" href="[!--news.url--]'.$_nowtype[tpath].'/">'.$_nowtype[tname].'</a>
';
//使用$r变量需开启“使用程序代码”
15:帝国cms搜索模板 列表内容模板(list.var) 如何调用标题分类关键词?
方法:$r变量+SQL语句
$_nowtype=$empire->fetch1("select * from {$dbtbpre}enewsinfotype where typeid='$r[ttid]'");
$listtemp='标题分类关键词:'.$_nowtype[pagekey].'';
//使用$r变量需开启“使用程序代码”
16:帝国cms搜索模板 列表内容模板(list.var) 如何调用内容点击数?
方法1:标签调用
[!--onclick--]
方法2:$r变量
$r[onclick]
//使用$r变量需开启“使用程序代码”,如:
$listtemp='点击数:'.$r[onclick].'';
17:帝国cms搜索模板 列表内容模板(list.var) 如何调用内容下载数?
方法1:标签调用
[!--totaldown--]
方法2:$r变量
$r[totaldown]
//使用$r变量需开启“使用程序代码”,如:
$listtemp='下载数:'.$r[totaldown].'';
18:帝国cms搜索模板 列表内容模板(list.var) 如何调用内容评论数?
方法1:标签调用
[!--plnum--]
方法2:$r变量
$r[plnum]
//使用$r变量需开启“使用程序代码”,如:
$listtemp='评论数:'.$r[plnum].'';
19:帝国cms搜索模板 列表内容模板(list.var) 如何调用内容发布时间?
方法1:标签调用
[!--newstime--]
方法2:$r变量
$r[newstime]
//使用$r变量需开启“使用程序代码”,如:
$listtemp='发布时间:'.$r[newstime].'';
20:帝国cms搜索模板 如何调用副表字段内容?
列表模板中要调用副表字段内容需要采用“list.var支持程序代码”。
//下面以调用新闻副表中的newstext字段为例:
$fr=$empire->fetch1("select newstext from {$dbtbpre}ecms_news_data_{$r[stb]} where id='$r[id]'");
$listtemp='
<a href="[!--titleurl--]">[!--title--]</a>
副表内容字段:'.$fr[newstext].'
';