我在我的attachment.php中获得了特色图片,但是同一帖子中的其他图片没有为其附件生成链接
<?php
$images =& get_children( array (
'post_parent' => $post->ID,
'post_type' => 'attachment',
'post_mime_type' => 'image'
));
if ( empty($images) ) {
echo "no attachments here";
} else {
foreach ( $images as $attachment_id => $attachment ) {
echo wp_get_attachment_image( $attachment_id,'thumbnail');
}
?>
我正在获取特色图片的输出,因为我希望同一帖子中的所有图片都具有相同的输出