我目前正在为艺术家目录工作。
我有两种自定义分类法; Artists
和Artist Genre
将与custom post type
艺术品绑定。
我可以获得一个循环来列出所有当前的Artist Genre
分类法,但是我想让它们链接到一个页面,在那里列出所有与之相关的艺术家{ {1}}分类。
这是我当前的循环:
Artists Genre
我知道我有<?php
$args = array('type' => 'artwork', 'taxonomy' => 'artist-genre', 'hide_empty' => false);
$categories = get_categories($args);
foreach($categories as $category) {
$img = get_field('bg-image', 'artist-genre_'. $category->cat_ID .'');
echo'
<li>
<h3><a href=" '. get_term_link($category, $catergory->taxonomy) .' "> '. $category->name . '</a></h3>
<img src="'. $img['url'] .'" alt="'. $img['alt'] .'" />
<a class="button" href=" '. get_term_link($category, $catergory->taxonomy) .' ">
Learn More →
</a>
<li>';
}
?>
来获得艺术家类型的分类术语,但我不知道如何获得它所以它链接到一个页面列出所有相关的艺术家与那种类型。我也不确定是否需要重新构建我的get_term_link()
和自定义custom post types
结构,以使其正常工作。
我希望这是有道理的。