6

我想循环浏览 NextGen 中特定专辑的图像。

我想使用 NextGen 专辑在主题 header.php 中创建横幅幻灯片。就像是:

loop through images in album = x:
$src = src of image
$title = title of image
echo $src and $title

这该怎么做?

找到了解决方案:

global $nggdb;
$gallery = $nggdb->get_gallery(8, 'sortorder', 'ASC', true, 0, 0);
foreach($gallery as $image) {
    echo $image->imageURL;
    echo $image->alttext;
    echo $image->description;
 }

所有其他 $image 属性也可以打印

4

1 回答 1

9

用zvinxs解决方案回答问题:

global $nggdb;
$gallery = $nggdb->get_gallery(8, 'sortorder', 'ASC', true, 0, 0);
foreach($gallery as $image) {
    echo $image->imageURL;
    echo $image->alttext;
    echo $image->description;
 }
于 2012-11-16T15:58:22.490 回答