当前位置 : 主页 > 建站教程 > dedecms >

织梦dede模板图集在首页或列表页调用并自定义显示几张图

来源:互联网 收集:自由互联 发布时间:2022-05-01
打开 include/extend.func.php 在***下面加入这个方法 function Getimgurls($aid,$num=4) { global $dsql; $imgurls = $result = ; $imgrow = $dsql-GetOne( Select imgurls From `dede_addonimages` where aid=$aid ); $imgurls = $imgrow[imgurl
打开 include/extend.func.php 在***下面加入这个方法
function Getimgurls($aid,$num=4)   
{
    global $dsql;
    $imgurls = $result = '';
    $imgrow = $dsql->GetOne( "Select imgurls From `dede_addonimages` where aid='$aid' ");
    $imgurls = $imgrow['imgurls'];
    if($imgurls != '')
    {
        $dtp = new DedeTagParse();
        $dtp->LoadSource($imgurls);
        $images = array();
        if(is_array($dtp->CTags))
        {
            foreach($dtp->CTags as $ctag)
            {
                if($ctag->GetName() == 'img')
                {
                    $row = array();
                    $row['width'] = $ctag->GetAtt('width');
                    $row['height'] = $ctag->GetAtt('height');
                    $row['imgsrc'] = trim($ctag->GetInnerText());
                    $row['text'] = $ctag->GetAtt('text');
                    $images[] = $row;
                }
            }
        }
        $dtp->Clear();
        $i = 0;
        foreach($images as $row)
        {
            if($i == $num) break;
            if($row['imgsrc'] != '')
            {
                $result .= "<li><div class='pic'><a title='{$row['text']}' href='{$row['imgsrc']}'><img src='{$row['imgsrc']}' mid='{$row['imgsrc']}' big='{$row['imgsrc']}' width='70' height='70'></a></div></li>";
            }
            $i++;
        }
        return $result;
    } 
}

请注意
<li><div class='pic'><a title='{$row['text']}' href='{$row['imgsrc']}'><img src='{$row['imgsrc']}' mid='{$row['imgsrc']}' big='{$row['imgsrc']}' width='70' height='70'></a></div></li>
上面这段代码改成符合自己页面的html格式。
前台模板中调用代码如下:
[field:id function=Getimgurls(@me,3)/]
3表示,此篇图集调用三张图片。
上一篇:织梦后台模板列表按字母排序方法代码
下一篇:没有了
网友评论
相关栏目