PHPCMS v9 tag标签页调用缩略图的修正办法:
翻开phpcmsmodulescontenttag.php文件
找到
$res=$this->db->get_one(array('id'=>$contentid),'title,description,url,inputtime,style');
修正为
$res=$this->db->get_one(array('id'=>$contentid),'title,thumb,description,url,inputtime,style');
PHPCMS v9 tag标签页调用缩略图的调用办法:
{loop$datas$r} <li> <ahref="{$r[url]}"><imgsrc="{thumb($r[thumb],100,100)}"/></a> </li> {/loop}
声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!
原文地址:PHPCMS二次开发教程标签页调用缩略图的方法发布于2022-05-20 07:43:29