从分类列表中获取另一个分类的链接

时间:2015-03-28 18:31:57

标签: wordpress loops custom-post-type permalinks custom-taxonomy

我目前正在为艺术家目录工作。

我有两种自定义分类法; ArtistsArtist 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 &rarr; </a> <li>'; } ?> 来获得艺术家类型的分类术语,但我不知道如何获得它所以它链接到一个页面列出所有相关的艺术家与那种类型。我也不确定是否需要重新构建我的get_term_link()和自定义custom post types结构,以使其正常工作。

我希望这是有道理的。

0 个答案:

没有答案