首页 > 解决方案 > 将图像重用于帖子

问题描述

我正面临 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;
?>

你能告诉我这里有什么问题吗?

标签: phpwordpress

解决方案


推荐阅读