您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程

帝国CMS相关信息调用smalltext简介的方法

紫翠2023-06-02 18:58:29帝国CMS教程已有人查阅

导读帝国cms模板在开发过程中,内容页SEO相关调用默认标签有:标题、关键词、描述。标题调用标签可以使用[!--title--],也可以使用副标题标签[!--ftitle--]

帝国cms模板在开发过程中,内容页SEO相关调用默认标签有:标题、关键词、描述。标题调用标签可以使用[!--title--],也可以使用副标题标签[!--ftitle--],也可以使用分页标题标签[!--p.title--]默认关键词调用标签[!--pagekey--]
描述一般使用[!--smalltext--]也就是内容简介,默认的标签调用有误在这里就不表述了,如果在没有内容简介的情况下默认调用新闻内容字段。
1、打开e/class/functions.php
2、找到:

$key_sql=$empire->query("select id,newstime,title,isurl,titleurl,classid,titlepic from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$add." order by newstime desc limit $link_num");

修改成:

$key_sql=$empire->query("select * from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where ".$add." order by newstime desc limit $link_num");

3、找到:

$temptext=str_replace("[!--newstime--]",$r[newstime],$temptext);

在下面加一个

$temptext=str_replace("[!--smalltext--]",$r[smalltext],$temptext);

4、在相关链接模板里面加入

[!--smalltext--]

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

相关标签