Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 wordpress + 高级自定义字段
我有一个用于 1-10 项目的多选复选框。
我需要它,所以返回数组将以粗体显示项目列表并带有中断。
自定义字段名称: article-name
<?php foreach(the_field('article-name') as $article) { echo '<strong>'.$article.'</strong><br />'; } ?>
它显示数组,然后给我一个无效的参数警告。我究竟做错了什么?
您正在使用实际打印值的 the_field 函数。
改用 get_field 将每个值分配给变量$article,见下文:
$article
<?php foreach(get_field('article-name') as $article) { echo '<strong>'.$article.'</strong><br />'; } ?>