我希望将 lightbox2 画廊系统与 Slick Flickr 的能力集成,以提取包含图像信息的 RSS 提要。到目前为止,我已正确设置和显示灯箱,但无法显示下一个或上一个按钮来循环浏览画廊中的其他图像。
这是当前的html。其余的是默认的 lightbox2 文件。
<div class="album-wrapper">
<?php foreach ($feed->get_items() as $item): ?>
<div class="photoContainer">
<?php
if ($enclosure = $item->get_enclosure()) {
$img = image_from_description($item->get_description());
$full_url = select_image($img, 4);
$thumb_url = select_image($img, 0);
echo '<a href="' . $full_url . '" rel="lightbox" ><img class="photo' . $i . '" src="' . $thumb_url . '" /></a>'."\n";
}
?>
</div>
<?php endforeach; ?>