从高级自定义字段获取图像数据

时间:2017-01-04 作者:Dragos Micu

我已经使用ACF创建了一个图像自定义字段,该字段将用作每个类别的特征图像。我搞不懂的是如何获取这些信息并将其显示为背景图像。

$category = get_the_category();
$category_id = $category[0]->term_id;

$category_image = get_field( \'featured_image\', $category_id );
var_dump($category_image);
我已经使用ACF文档编写了上述内容,但它显示为“NULL”。

提前感谢!

1 个回复
最合适的回答,由SO网友:socki03 整理而成

要从类别中检索内容,并不像只传递类别ID那么简单。

所有分类都使用相同的布局:\'{taxname}_{term_id}\'

你的例子是

$category_image = get_field( \'featured_image\', \'category_\' . $category_id );

相关推荐