我设法列出了自定义父分类法的所有直接子项。
Chocolates
Marshmallows
Popcorn
..and so on...
使用以下代码。
<?php
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
if ($term->parent == 0) {
$terms = get_terms( 'product-type', 'parent='.$term->term_id ); }
else { $terms = get_terms( 'product-type', 'parent='.$term->parent ); }
foreach($terms as $term) {
echo '
<div class="snack_type">
<a href="' . get_term_link( $term ) . '">' . $term->name . '</a>
</div>
'; }
?>
上面显示的每个分类法都会使用自定义字段(高级自定义字段)上传到其中的图像。如何在生成的每个div中显示自定义字段(product_type_image)?像这样
Chocolates [product_type_image]
Marshmallows [product_type_image]
Popcorn [product_type_image]
..and so on...
我正在尝试
$productimage = get_field('product_type_image', $term->taxonomy.'_'.$term->term_id);
但尝试展示任何内容都不成功
答案 0 :(得分:1)
添加此行
Resource::whereHas('categories', function ( $query){
$query->whereIn('resource_category_id', [1, 2, 4]);
}, '>', 1)->get()
所以看起来应该是这样的
echo '<img src="' . get_field('product_type_image', $term->taxonomy . '_' . $term->term_id) . '"/>';