欢迎来到素材无忧网,按 + 收藏我们
登录 注册 退出 找回密码

PHPCMS二次开发教程标签页调用缩略图的方法

时间: 2020-09-16 11:10 阅读: 作者:素材无忧网

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>
  <a href="{$r[url]}"><img src="{thumb($r[thumb], 100, 100)}" /></a>
</li>
{/loop}


版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!

转载请注明: PHPCMS二次开发教程标签页调用缩略图的方法

标签:  
推荐文章
模板推荐