Lightbox 2和Flickr - 下一个和上一个按钮在哪里?

时间:2012-05-14 18:09:12

标签: lightbox flickr lightbox2

我希望将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; ?>  

1 个答案:

答案 0 :(得分:0)

<!doctype html>放在代码的第一行将解决问题