幻灯二

PHPCMS v9 tag标签页调用缩略图的方法

PHPCMS v9 tag标签页调用缩略图的修改方法:
打开 \phpcms\modules\content\tag.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}

您可能还会对下面的文章感兴趣:

内容页广告位一