打破嵌套循环
2022-08-30 08:22:52
我在嵌套循环时遇到问题。我有多个帖子,每个帖子都有多个图像。
我想从所有帖子中获得总共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;
}
}
}