终于可以请一位朋友亲自帮我把这件事做好了。以下是我们所改变的:
<ul class="slides">
<?php
$slideshow_repeat = simple_fields_get_post_group_values( get_the_id(), "Slideshow", true, 2 );
print_r( $slideshow_repeat );
foreach ( $slideshow_repeat as $slide ) {
// This is the important bit
$image_src = wp_get_attachment_image_src( $slide[\'Slide\'], \'full\' );
?>
<li>
<img src="<?php echo $image_src[0]; ?>" alt="<?php echo $slide[\'Title\']; ?>"/>
<h2><?php echo $slide[\'Title\']; ?></h2>
<p><?php echo $slide[\'Caption\']; ?></p>
<p><?php echo $slide[\'Image Credit\']; ?></p>
</li>
<?php
} ?>
</ul>
$slide[\'Slide\']
正在返回附件
ID
, 因此,我们不需要深入数组来分配大小。希望这有意义!