我需要显示按术语分类的自定义帖子类型列表。这个想法是这样的:
服务清单:
<ul>
<li>
<a href="#">Webdesign (taxonomy term)</a>
<ul>
<li>Business Website A (custom post type from this taxonomy term)</li>
<li>Business Website B (custom post type from this taxonomy term)</li>
<li>Business Website C (custom post type from this taxonomy term)</li>
</ul>
</li>
<li>
<a href="#">Illustration (taxonomy term)</a>
<ul>
<li>Business Illustration A (custom post type from this taxonomy term)</li>
<li>Business Illustration B (custom post type from this taxonomy term)</li>
<li>Business Illustration C (custom post type from this taxonomy term)</li>
</ul>
</li>
<li>Other service without taxonomy (if has no taxonomy, show in first level)</li>
</ul>
我试过wp_list_pages和wp_list_categories,但没有成功。
- 有人可以给我一个提示如何进行吗?