使用gettotal统计查询来调用帝国CMS当前栏目的缩略图方法
在帝国CMS中,可以使用gettotal统计查询来调用当前栏目的缩略图。首先,需要在模板中使用`[!--news.url--]`标签获取当前新闻的URL地址。然后,使用`[!--news.thumburl--]`标签获取当前新闻的缩略图URL地址。最后,将这两个URL地址拼接在一起,就可以得到当前栏目的缩略图地址。例如: ``` ``` 这样,就可以在页面上显示当前栏目的缩略图了。
利用gettotal统计查询来调用帝国CMS当前栏目缩略图方法
当前栏目ID
<?=$empire->gettotal("selectclassidastotalfrom{$dbtbpre}enewsclasswhereclassid={$GLOBALS['navclassid']}limit1")?>
当前栏目的缩略图:
<?=$empire->gettotal("selectclassimgastotalfrom{$dbtbpre}enewsclasswhereclassid={$GLOBALS['navclassid']}limit1")?>
当前父栏目ID
<?=$empire->gettotal("selectclassidastotalfrom{$dbtbpre}enewsclasswhereclassid={$class_r[$navclassid][bclassid]}limit1")?>
当前父栏目的缩略图
<?=$empire->gettotal("selectclassimgastotalfrom{$dbtbpre}enewsclasswhereclassid={$class_r[$navclassid][bclassid]}limit1")?>
注释:调用什么字段就填写什么字段,如栏目ID:classid 、栏目图片:classimg
注意:gettotal用count(*)时为统计,用*时为字段;*号也可以是字段如:classid