我对php非常陌生,我正在尝试在前端使用高级自定义字段获取图像集。我查看了文档和论坛,但找不到url。除了图像,所有代码都可以工作。我希望显示url值,但得到的是一个空白值。我知道我需要获得分类ID,我肯定遗漏了什么。
以下是我的ACF设置的图像:https://puu.sh/xFI3Y/23bea86ecf.png
规则是:https://puu.sh/xFI5N/2865cecc5a.png
<?php
// get all the categories from the database
$cats = get_categories();
// loop through the categories
foreach ($cats as $cat) {
// setup the category ID
$cat_id= $cat->term_id;
?>
<div style="background: url( <?php the_field(\'category-image\', \'term_\'. $cat_id); ?> );"></div>
<?php } ?>
感谢您提前提出建议。