gpt4 book ai didi

php - 如何循环播放媒体库中的图像并显示它们? (文字出版社)

转载 作者:行者123 更新时间:2023-12-02 06:57:51 24 4
gpt4 key购买 nike

我正在尝试在 wordpress 中制作一个简单的画廊(我尝试了一些插件,但没有一个让我信服)。问题是我发现更有用的解决方案是遍历我已经上传到媒体库的图像并显示它们(作为网格画廊)。

问题是我没有找到任何关于如何遍历媒体库图像并将它们显示为缩略图的信息,有什么建议吗?

最佳答案

是这样的吗?

$args = array(
'post_type' => 'attachment',
'post_mime_type' => 'image',
'orderby' => 'post_date',
'order' => 'desc',
'posts_per_page' => '30',
'post_status' => 'inherit'
);

$loop = new WP_Query( $args );

while ( $loop->have_posts() ) : $loop->the_post();

$image = wp_get_attachment_image_src( get_the_ID() );
echo "<img src='" . $image[0] . "'>";

endwhile;

关于php - 如何循环播放媒体库中的图像并显示它们? (文字出版社),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27593740/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com