<?php $terms = wp_get_post_terms($post->ID,'category');
foreach ($terms as $term) {
$termcomp = $term->taxonomy . '_' . $term->term_id; } ?>
<?php the_field('tagline' , $termcomp); ?>
我如何在 wordpress 上使用此代码而不回显 6 次,因为我在该类别中有 6 个帖子..
整页模板在那里,foreach 也在底部,这个工作正常,只根据需要输出一次。