将分类法的“返回值”设置为术语ID。这将返回术语/类别ID,以便在使用get\\u字段获取ACF分类法值时,它将返回类别的ID。然后,通过使用以下代码,您可以在该类别下显示您的5篇最新发布文章。
$cat_id = get_field(\'<your ACF field name>\');
$args = array(
\'post_type\' => \'post\', //or your postype
\'post_status\' => \'publish\',
\'posts_per_page\' => 5,
\'cat\' => cat_id
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) :
while ( $query->have_posts() ) : $query->the_post();
the_title();
the_excerpt();
endwhile;
endif;
wp_reset_postdata();