最佳答案
我有嵌套循环的问题。我有多个职位,每个职位有多个图像数量。
我想得到总共5张图片从所有职位。因此,我使用嵌套循环获取图像,并希望在数字达到5时中断循环。下面的代码将返回图像,但似乎不会中断循环。
foreach($query->posts as $post){
if ($images = get_children(array(
'post_parent' => $post->ID,
'post_type' => 'attachment',
'post_mime_type' => 'image'))
){
$i = 0;
foreach( $images as $image ) {
..
//break the loop?
if (++$i == 5) break;
}
}
}