如果你在标签档案中$current_term
不是标签吗?而不是类别?一篇文章可以分为多个类别,那么应该从哪个类别中提取图像?或者您是否将图像与每个标记以及每个类别关联,并且希望图像与该标记关联?
假设你想让帖子从与之相关的某个类别中提取图像,你要么需要一种设置主要类别的方法(我认为Yoast SEO插件添加了这一点),要么需要一个规则。。。就像你只使用列表中的第一个类别一样。然后您需要使用post ID查询类别以获取对象。。。未经测试,但类似于此。。。
$post_categories = wp_get_post_categories($post_id, array(\'fields\' => \'all\'));
$current_term = $post_categories[0];
$author_image = get_field(\'author_image\', $current_term );
echo do_shortcode(\'[image_shortcode id="\'.$author_image.\'" image_size="original"]\');