迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
如何调用内容页的图片作为封面图片,如果内容页有图片就选择内容页的图片,如果内容页没有图片,就默认封面图片
帮忙解决一下信息流多图和单图的问题,主要是调用内容页里面的图片来作为封面图,如果内容页没有封面图就直接用默认的图片
代码如下但是不知如何调用求大神帮忙解决一下
想做成下面这种样式
当内容里面有大于三张图片那么就是最下面的那种样式,如果小于三张就是第一种样式,或者第二种样式迅睿框架技术-胡老师
{module catid=$catid join=1_news_data_0 on=id order=updatetime page=1} {if $dr_get_content_img($content)} {php $imgs = dr_get_content_img($content);} <li class="search-item clearfix"> <a title="{$t.title}" href="{$t.url}"> {loop $imgs $img} <img src="{$img}" width="100" height="90" style="margin-top: 15px;"> {/loop} </a> <div class="search-content text-left" style="overflow: hidden;height:116px;position: relative;"> <h4 class="search-title"> <a title="{$t.title}" href="{$t.url}">{dr_strcut($t.title, 20)}</a> </h4> <!--<p class="search-desc">{dr_strcut($t.description, 20)}</p>--> <div class="search-post-foot"> <a href="{dr_cat_value('news',$t.catid, 'url')}"><i class="fa fa-list"></i> {dr_cat_value('news',$t.catid, 'name')}</a> <a href="{$t.url}"><i class="fa fa-calendar"></i> {dr_date($t._updatetime, 'Y-m-d')}</a> </div> </div> </li> {else} <li> <h4 class="search-title"> <a title="{$t.title}" href="{$t.url}">{dr_strcut($t.title, 20)}</a> </h4> <div class="img-t" style="overflow: hidden;position: relative;height: 110px;"> <div class="img-t-g" style="margin-right:10px;"> <div class="" style="width:30%;float:left;margin-right:10px;height:70px;"> <img src="{$img}" style="width:100%;height:100%;"> </div> </div> <div class="search-post-foot"> <a href="{dr_cat_value($t.catid, 'url')}"><i class="fa fa-list"></i> {dr_cat_value($t.catid, 'name')}</a> <a href="{$t.url}"><i class="fa fa-calendar"></i> {dr_date($t._updatetime, 'Y-m-d')}</a> </div> </div> </li> {/if} {/module}
{if $dr_get_content_img($content)} {php $imgs = dr_get_content_img($content);} 改成 {php $imgs = dr_get_content_img($t.content);} {if $imgs }
帮忙解决一下信息流多图和单图的问题,主要是调用内容页里面的图片来作为封面图,如果内容页没有封面图就直接用默认的图片
代码如下但是不知如何调用求大神帮忙解决一下
想做成下面这种样式
当内容里面有大于三张图片那么就是最下面的那种样式,如果小于三张就是第一种样式,或者第二种样式迅睿框架技术-胡老师