我想到了一个while循环,但找不到解决方法:
$foo1 = get_post_meta( $post->ID, '_item1', true );
if (!empty($foo1)){
echo ("<div class='$foo1'></div>");
}
$foo2 = get_post_meta( $post->ID, '_item2', true );
if (!empty($foo2)){
echo ("<div class='$foo2'></div>");
}
等等......一百次,直到我达到 $foo100 和 _item100 有什么想法可以实现这一点,不要一遍又一遍地重复这 4 行吗?