我做错了什么?图像根本没有列出,就像媒体库中没有图像一样,当我更改 id 时,它列出了所有图像,但我只需要一个。你能帮我吗?
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post-masonry col-md-4 col-sm-6 wow fadeInUp ">
<div class="blog-wrapper" <?php echo post_class(); ?> >
<?php $featuredImage = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'medium' ); ?>
<img src="<?php echo $featuredImage[0]; ?>" class="img-responsive">
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<small><?php the_time('F jS, Y'); ?></small>
<p><?php the_excerpt(); ?></p>
</div>
</div>
<?php endwhile; else: ?>
<h3>No posts in database </h3>
<?php endif; ?>
到目前为止,我已经尝试了所有可能的功能:wp_get_attachment_url、wp_get_attachment_image、wp_get_attachment_image_src、wp_get_attachment...