我正面临WordPress画廊帖子格式的问题。 我使用此代码来获取所有附加的图像。它正常工作。但是创建帖子时,它总是要求我上传新图像。我无法重用已经上传的图像。 下面是我编写的代码。
<?php
$galleries = get_posts( array(
'post_type' => 'attachment',
'posts_per_page' => 5,
'post_parent' => $post->ID,
) );
if ($galleries) :
foreach ($galleries as $gallery) : ?>
<a href="<?php the_permalink(); ?>"><img class="card-img rounded-0" src="<?php echo wp_get_attachment_url($gallery->ID); ?>" alt="<?php the_title();?>"></a>
<?php
endforeach;
endif;
?>
您能告诉我这里的问题吗?