用語で分類されたカスタム投稿タイプのリストを表示する必要があります。アイデアは次のようなものです。
サービス一覧:
<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を試しましたが、成功しませんでした。
- 誰かが先に進む方法のヒントを教えてもらえますか?