通过一系列具体要求,我发现自己需要使用其术语 id 链接到自定义分类类别...
我有这个 - 显示所有分类法的链接 - 我希望更改它,因此它只显示分类法的链接,其中术语 id 从我正在使用的自定义字段中动态提取。
$taxonomy = 'event-categories';
$terms = get_terms($taxonomy);
if ($terms) {
foreach($terms as $term) {
echo '<li><a href="http:/mysite.com/events/categories/project-events/' . $term->slug . '">' . $term->name .'</a></li>';
}
};
本质上我需要“link_to_taxonomy_category(x)”,其中 x = term_id
谢谢