在自定义分类模板中获取自定义字段

Posted

技术标签:

【中文标题】在自定义分类模板中获取自定义字段【英文标题】:Get custom fields in custom taxonomy template 【发布时间】:2015-10-15 21:53:32 【问题描述】:

我已经设法列出了自定义父分类的所有直系子级..

 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);

但尝试显示任何内容均未成功

【问题讨论】:

【参考方案1】:

添加这一行

echo '<img src="' . get_field('product_type_image', $term->taxonomy . '_' . $term->term_id) . '"/>';

应该是这样的

<?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>'; 
echo '<img src="' . get_field('product_type_img', $term->taxonomy . '_' . $term->term_id) . '"/>';

?>

【讨论】:

以上是关于在自定义分类模板中获取自定义字段的主要内容,如果未能解决你的问题,请参考以下文章

无法在自定义分类存档页面上获取选项页面自定义字段

查询ACF在自定义分类模板中的WP_Query期间发布对象

如何在自定义 UITableView 中获取文本字段

Yii2在自定义模板表单字段中读取已保存的数据

Jira scriptrunner脚本字段:在自定义字段上,计算其他自定义字段的值并显示总计

如何在自定义验证器中获取另一个组件的值? [复制]