我正在使用带有wordpress的pod,我在显示帖子图像方面遇到了一些问题 这是我的代码
<div>
<?php
$args = array(
'numberposts' => 1,
'post_type' => 'attachment',
'post_mime_type' => 'image',
'post_status' => null,
'post_parent' => $post->ID
);
$post = get_posts( $args );?>
<h4><a href="{@permalink}">{@post_title}</a></h4>
<?php
foreach($post as $image):
echo wp_get_attachment_image($image->ID, 'thumbnail');?>
<div>{@summary}<br/>
<a href="{@permalink}">Read More</a>
<hr />
</div>
<?php endforeach;
?>
标题和摘要/摘录显示良好,但图像(在帖子中)只移动一个图像,然后在其他帖子上重复相同的图像。任何人都有想法为什么?