帝国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--]
版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!
转载请注明: 帝国CMS相关信息调用smalltext简介的方法