1. 程式人生 > >織夢圖集圖片在首頁列表頁呼叫並且自定義輸出幾張

織夢圖集圖片在首頁列表頁呼叫並且自定義輸出幾張

不改動官方核心檔案,在自定義方法檔案里加入個方法來實現織夢圖集圖片在首頁列表頁呼叫並且自定義輸出幾張

效果展示

教程實現

開啟 include\extend.func.php 在最下面加入這個方法

function Getimgurls($aid,$num=4)    
{
    global $dsql;
    $imgurls = $result = '';
    $imgrow = $dsql->GetOne( "Select imgurls From `#@_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;
    }  
}

上面html程式碼部分改成你自己的,注意單雙引號

<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>

首頁/列表頁標籤呼叫寫法

[field:id function=Getimgurls(@me,4)/]

數字4是呼叫幾張圖片