我正在使用高级自定义字段制作WP网站。 在一个页面上,我想要回显一个包含所有类别" Studio"的帖子的循环。然后我想显示名为" studio_project_dia_img"的子字段中的第一个图像。 我可以从repeater_field获取所有图像,但不仅仅是第一个
此代码有效(仅回显来自转发器字段的所有行):
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<li class="thumbs">
<a href="studio-single.html" class="clearfix">
<?php if (get_field('studio_project_dia')) : while(has_sub_field('studio_project_dia')): ?>
<img src="<?php echo get_sub_field('studio_project_dia_img', $post->ID); ?>" />
<?php endwhile; endif; ?>
<div class="thumbsText">
<h2><?php the_title(); ?></h2>
<h3><?php the_tags( 'Tags: ', ' / ', ''); ?></h3>
</div>
</a>
</div>
<?php edit_post_link('Edit this entry','','.'); ?>
</div>
<?php endwhile; endif; ?>
这段代码没有:
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<li class="thumbs">
<a href="studio-single.html" class="clearfix">
<?php if (get_field('studio_project_dia')) : while(has_sub_field('studio_project_dia')): ?>
<?php
$rows = get_sub_field('studio_project_dia_img', $post->ID);
$first_row = $rows[0];
$first_row_image = $first_row['studio_project_dia_img'];
$image = wp_get_attachment_image_src( $first_row_image, 'full' );
// url = $image[0];
// width = $image[1];
// height = $image[2];
?>
<img src="<?php echo $image[0] ?>" />
<?php endwhile; endif; ?>
<div class="thumbsText">
<h2><?php the_title(); ?></h2>
<h3><?php the_tags( 'Tags: ', ' / ', ''); ?></h3>
</div>
</a>
</div>
<?php edit_post_link('Edit this entry','','.'); ?>
</div>
<?php endwhile; endif; ?>
答案 0 :(得分:5)
在您的第一个代码中,在'img'标记之后添加break;
,如下所示:
<?php if (get_field('studio_project_dia')) : while(has_sub_field('studio_project_dia')): ?>
<img src="<?php echo get_sub_field('studio_project_dia_img', $post->ID); ?>" />
<?php break; endwhile; endif; ?>
使用break
,while
循环将停止。
答案 1 :(得分:1)
仅见上文:
<?php if (get_field('studio_project_dia')) : while(has_sub_field('studio_project_dia')): ?>
<img src="<?php echo get_sub_field('studio_project_dia_img', $post->ID); ?>" />
<?php break; endwhile; endif; ?>
答案 2 :(得分:0)
<?php
if(have_rows('client_logo') ):
while ( have_rows('client_logo') ) : the_row();
?>
<?php
$image = get_sub_field('logo');
$size = 'full'; // (thumbnail, medium, large, full or custom size)
if( $image ) {
echo wp_get_attachment_image( $image, $size );
}
?>
<?php endwhile;
else :
// no rows found
endif;
?>
我使用此代码获取转发器字段然后获取子字段并让它显示图像希望这有助于您找到解决方案。