在自定义分类模板中获取自定义字段
Get custom fields in custom taxonomy template
我已经成功地列出了自定义父分类的所有直接子类..
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);
但尝试展示任何东西都没有成功
添加这一行
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) . '"/>';
}
?>
我已经成功地列出了自定义父分类的所有直接子类..
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);
但尝试展示任何东西都没有成功
添加这一行
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) . '"/>';
}
?>