收到“为Foreach()提供的参数无效”警告 时间:2013-07-11 作者:keilowe 我正在学习教程的最后一步here , 称为“使用数据”。我试过使用//$album_repeatable = unserialize($post_meta_data[\'album_repeatable\'][0]); echo \'[ul class="album_repeatable"]\'; foreach ($album_repeatable as $string) { echo \'[li]\'.$string.\'[/li]\'; } echo \'[/ul]\'; 但我得到了问题标题中所述的警告//“警告:为foreach()提供的参数无效”到底是什么问题? 1 个回复 最合适的回答,由SO网友:keilowe 整理而成 使用常规方法获取现场数据,而不是“取消序列化”切换此行:$album_repeatable = unserialize($post_meta_data[\'album_repeatable\'][0]); 至此行:$album_repeatable = get_post_meta($post->ID, \'album_repeatable\', true); 现在,将显示我的可重复字段数据。感谢@toscho指出。。。 结束 文章导航