欢迎光临 - 我的站长站,本站所有资源仅供学习与参考,禁止用于商业用途或从事违法行为!

phpcms教程

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

phpcms教程 我的站长站 2016-08-15 共405人阅读

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}