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

PHPCMS v9 tag标签页调用缩略图的修改方法:打开phpcmsmodulescontenttag.php文件找到$res = $this->db->get_one(array('id'=>$contentid), 'title, description, url, inputtime, styl

[时间:11-09]    [浏览:]    [放入收藏夹]    [查看详情]

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}


  本文转载自:精准像素:11px.cn ,感谢作者分享实用知识


标签: