我将页面的所有附件图像拉入模板,以便我可以在它们上使用Jquery Galleriffic图库。
该库工作正常,但由于某种原因,它只显示5个缩略图,这不受Galleriffic插件控制,它在缩略图之前限制读取Jquery文件。
以下是我如何提取附件的代码:
<?php $images = get_posts("post_mime_type=image&post_type=attachment&orderby=menu_order ID&order=ASC&post_parent=$post->ID"); // we get array of images ?>
<?php if(!empty($images)) foreach($images as $img) : ?>
<li><a class="thumb" href="<?php echo array_shift( wp_get_attachment_image_src($img->ID,"large") ); ?>"><img src="<?php echo array_shift( wp_get_attachment_image_src($img->ID,"thumbnail") ); ?>" alt="<?php echo esc_attr($img->post_title); ?>" /></a></li>
<?php endforeach; ?>
有人能帮助我吗?
答案 0 :(得分:0)