国内外主机
测评及优惠码

dedecms织梦图集在首页列表页调用并且自定义输出几张的教程

dedecms图集在首页列表页调用并且自定义输出几张图片,不改动官方核心文件。
打开 includeextend.func.php 在最下面加入这个方法
function Getimgurls($aid,$num=4)   
{
    global $dsql;
    $imgurls = $result = ”;
    $imgrow = $dsql->GetOne( “Select imgurls From `mydiy_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 .= “

  • ”;
                }
                $i++;
            }
            return $result;
        } 
    }
    注意

  • 这块根据自己页面的实际布局,自行修改Html标签
    前台模板 首页 或者 列表页 中调用
    [field:id function=Getimgurls(@me,5)/]
    数字5是调用本图集中的5张图

    赞(0)
    版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
    文章名称:《dedecms织梦图集在首页列表页调用并且自定义输出几张的教程》
    文章链接:https://www.ibytx.com/1132.html
    本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。

    登录

    找回密码

    注册