Wordpress:附件库仅显示5张图片

时间:2012-02-27 14:37:16

标签: php wordpress

我将页面的所有附件图像拉入模板,以便我可以在它们上使用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; ?>

有人能帮助我吗?

1 个答案:

答案 0 :(得分:0)

看起来返回的默认帖子数量为5(另请参阅documentation

尝试更新。

所以添加&numberposts=100(例如100)

ps:为了便于阅读,请将其设为上面链接的文档中显示的数组