【发布时间】:2019-05-23 17:59:04
【问题描述】:
我正在创建一个自定义页面来列出所有产品 (taxonomy=product_cat) 子类别以及我创建的 ACF 字段。
我尝试在谷歌上搜索解决方案,但我只能得到 the_field('');
但是当我调用它时,它没有显示自定义字段中的任何值是所见即所得
<?php
$parentid = get_queried_object_id();
$args = array(
'parent' => 68,
'hierarchical' => 1,
'show_option_none' => '',
'hide_empty' => 0,
);
$terms = get_terms( 'product_cat', $args );
if ( $terms ) {
foreach ( $terms as $term ) {
var_dump($term);
echo '<div class="row expand-blocks"><div class="col-md-3">
<h3 class="category_name">'.$term->name.'</h3>';
woocommerce_subcategory_thumbnail( $term );
echo'</div> <div class="col-md-9 category_description"><p class="readmoretoggle">'.$term->description.'</p> <div class="row category_full_description"><div class="">';
echo '<div class="col-md-6"><div class="nutrition_value ">';
//need to show below
the_field('nutrition_value_per_one_cup', '107');
echo '</div></div> <div class="col-md-6"><div class="useful_value ">';
//need to show below
the_field('useful_for_body_parts');
echo '</div> </div>';
}
}
?>
我希望字段的 html 输出
【问题讨论】:
标签: wordpress advanced-custom-fields wysiwyg