如何在 WooCommerce 存档页面标题后添加 ACF 字段
How to add ACF field after WooCommerce archive page title
我正在尝试在 WooCommerce 存档页面标题后打印一个 ACF
字段。
我使用了下面的代码但是没有用。
woocommerce_page_title();
global $post;
if( get_field('acf_field',$taxonomy . '_' . $termId) ):
$taxonomy = get_query_var('taxonomy');
$term_id = get_queried_object()->term_id;
the_field('acf_field', $taxonomy . '_' . $term_id);
else:
endif;
我不确定你为什么在这里使用 global $post
变量,因为你没有提供完整的代码,但我认为你不需要它来输出 acf
字段。
因此请尝试以下代码段:
woocommerce_page_title();
$term_id = get_queried_object()->term_id;
$taxonomy = get_queried_object()->taxonomy;
$custom_field_value = get_field('you_acf_field_here', $taxonomy . '_' . $term_id);
if ($custom_field_value) :
echo $custom_field_value;
else :
echo 'NO CUSTOM FIELD FOUND!';
endif;
我正在尝试在 WooCommerce 存档页面标题后打印一个 ACF
字段。
我使用了下面的代码但是没有用。
woocommerce_page_title();
global $post;
if( get_field('acf_field',$taxonomy . '_' . $termId) ):
$taxonomy = get_query_var('taxonomy');
$term_id = get_queried_object()->term_id;
the_field('acf_field', $taxonomy . '_' . $term_id);
else:
endif;
我不确定你为什么在这里使用 global $post
变量,因为你没有提供完整的代码,但我认为你不需要它来输出 acf
字段。
因此请尝试以下代码段:
woocommerce_page_title();
$term_id = get_queried_object()->term_id;
$taxonomy = get_queried_object()->taxonomy;
$custom_field_value = get_field('you_acf_field_here', $taxonomy . '_' . $term_id);
if ($custom_field_value) :
echo $custom_field_value;
else :
echo 'NO CUSTOM FIELD FOUND!';
endif;