想在前端产品详情页调取轮播图,但是不显示
后台产品缩略图上传了3张图片,想在前端产品详情页调取轮播图,但是不显示,前端模板show.html。
<?php $t['thumb'] = dr_arraycut($t['thumb'], 5);?>
<?php if ($t['thumb']) { $key=0;foreach ($t['thumb'] as $c) { ?>
<div class="img">
<img src="{dr_get_file($c.file)}" alt="{$t['title']}">
</div>
<?php $key++;} } ?>