我想为每个帖子 ID 创建一个带有图像的循环。这些是由我购买的主题制作的自定义图像。这些图像有一个名为“estate_property_images”的元键。这是我制作的代码,但没有图像的帖子显示的图像是不可能的。
$args = array(
'post_type' => 'attachment',
'orderby' => 'post__in',
'post__in' => get_post_meta( $post->ID, 'estate_property_images', false ));
$gallery_array = get_posts( $args );
foreach ($gallery_array as $slide) {
$attachment = wp_get_attachment_image_src( $slide->ID, 'full' );
$attachment_url = $attachment[0];
$xml .= "\t\t<afbeeldingURL>".$attachment_url."</afbeeldingURL>\n";
}
有人可以帮我解决这个问题吗?