我正在使用 WordPress 和高级自定义字段,并且我想显示 3-6 个图像,具体取决于在 Select field 帖子类型上选择了哪些字段。
我有它,因此值/变量与图像名称相关联,因此它将显示根据您的选择选择的图像。
例如“红色:红色”
<img src="example.com/images/image-<?php the_field(color) ?>.jpg" alt="<?php the_field(color) ?>">
Now the noob question is, when more than one field is selected, it returns an array (ie red, green, black.) and I can't really have the function output as an array since it won't match the image name.
有谁知道如何为多个图像输出分离一个数组?