我正在尝试在wordpress中制作一个包含所有类别及其相应缩略图的页面。我已使用“高级自定义字段”将图像添加到类别中,但是在我正在做的页面上显示图像时遇到了问题。
我有此代码:
<?php
// get the current taxonomy term
$term = get_queried_object();
// vars
$image = get_field('category_thumb', $term);
?>
<?php
$categories = get_categories();
foreach($categories as $category) {
echo
'
<div class="thumb-block">
<div class="thumb-inside">
<div class="thumb">
<img src="<?php echo $image['url']; ?>">
</div>
</div>
<div class="thumb-under">
<p>
<a href="' . get_category_link($category->term_id) . '">' . $category->name . '
</a>
</p>
</div>
</div>'
;}?>
我想要在<img src="<?php echo $image['url']; ?>">
中放入类别的图像。
出现错误。