使用转发器显示链接到完整图像的缩略图图像

时间:2013-11-06 10:50:31

标签: php jquery html image jquery-masonry

我正在使用带有转发器字段的高级自定义字段插件来显示砌体库中的图像,我希望能够将图库中的图像显示为缩略图然后当点击它们打开到灯箱时,我让所有工作除了砌体图像没有显示为缩略图(意思是当打开页面时加载全高清图像导致加载时间缓慢,继续网页 - http://vn.deckchairdesign.co.uk/wedding/weddings/(我应该添加这个是我正在创建的Wordpress主题!)。 这是代码:

<?php if(get_field('images')): ?>
                <?php while(the_repeater_field('images')): ?>
                        <?php $image = wp_get_attachment_image_src(get_sub_field('image'), 'full'); ?>
                        <?php $thumb = wp_get_attachment_image_src(get_sub_field('image'), 'thumbnail'); ?>
                        <div class="item">

                        <!-- Lightbox Image's -->       
                        <a href="<?php the_sub_field('image');?>" class="fancybox" rel="gallery_group"> 
                        <!-- Thumbnail Image's -->  
                        <img src="<?php the_sub_field('image');?>"
                        </a>

                        </div>
                <?php endwhile; ?>

            <?php endif; ?> 

0 个答案:

没有答案