无法将特色图片添加到自定义分类法中
Can't get featured images added to custom taxonomies
我正在尝试将特色图片选项添加到我的自定义分类术语中。我最初尝试使用 ACF 添加图像,但这会将图像添加到 post 类型而不是分类法。
对于我的第二个选择,我浏览了以前的 SO posts,但答案是几年前的,看起来很老套。下面的代码显示了我当前的自定义分类法设置。我添加了
/* custom taxonomies */
function my_custom_events_taxonomies(){
register_taxonomy(
'events',
'events',
array(
'label' => 'Events type',
'rewrite' => array( 'slug' => 'Events'),
'hierarchical' => false,
'custom-fields' => true,
)
);
}
您可以使用 ACF 将图像字段添加到分类术语。
在这里,我将自定义 ACF 图像字段添加到分类法 'Product tag'(Woocommerce 的默认分类法,对所有分类法都一样)(在您的情况下,它将是events
分类法):
然后,当您为此分类法创建新术语时,您将获得新字段(当然,您还会在术语编辑页面上获得新图像字段):
我也请你看 (mine) about how ACF4 manage custom fields on terms (fake term_meta
). But in your case, where you just need to retrieve the image for a particular term somewhere, ACF helpers应该够了吧
我正在尝试将特色图片选项添加到我的自定义分类术语中。我最初尝试使用 ACF 添加图像,但这会将图像添加到 post 类型而不是分类法。
对于我的第二个选择,我浏览了以前的 SO posts,但答案是几年前的,看起来很老套。下面的代码显示了我当前的自定义分类法设置。我添加了
/* custom taxonomies */
function my_custom_events_taxonomies(){
register_taxonomy(
'events',
'events',
array(
'label' => 'Events type',
'rewrite' => array( 'slug' => 'Events'),
'hierarchical' => false,
'custom-fields' => true,
)
);
}
您可以使用 ACF 将图像字段添加到分类术语。
在这里,我将自定义 ACF 图像字段添加到分类法 'Product tag'(Woocommerce 的默认分类法,对所有分类法都一样)(在您的情况下,它将是events
分类法):
然后,当您为此分类法创建新术语时,您将获得新字段(当然,您还会在术语编辑页面上获得新图像字段):
我也请你看term_meta
). But in your case, where you just need to retrieve the image for a particular term somewhere, ACF helpers应该够了吧