我有滑块显示,通过在后期图库格式中以较大尺寸点击图片来显示图像
我在下面有这个代码
我在data-src
点击任意图片http://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg
时直接加载此图片但我想在data-src
中放置wordpress功能,直到点击任何图片直接显示或加载图像
<ul id="lightGallery" class="gallery">
<?php foreach ($post_images as $post_image) : ?>
<li class="col-lg-4" data-title="" data-desc="" data-responsive-src="" data- src="http://wpthemetestdata.files.wordpress.com/2012/12/unicorn-wallpaper.jpg">
<a href="<?php the_permalink(); ?>">
<?php echo wp_get_attachment_image( $post_image->ID, array() ); ?>
</a>
</li>