私は lightbox2 ギャラリー システムを、画像情報を含む RSS フィードを取り込む Slick Flickr の機能と統合しようとしています。これまでのところ、ライトボックスをセットアップして正しく表示していますが、ギャラリーの他の画像を循環するための次または前のボタンを表示できません。
これが現在の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; ?>