私は、 "portfolio-category"というカスタム分類法を使用しているカスタムポストタイプを扱っています。分類法カテゴリPermalink
今、私はこのタクソミーのカテゴリを関連するパーマリンクと共にリストしようとしています。
これらのリストは問題ありません。パーマリンクを表示するための適切な用語を見つけることはできません(現在のところ、以下のコードでは#と書かれています)。ここで
は私のコードです:
<?php
// your taxonomy name
$tax = 'portfolio-category';
// get the terms of taxonomy
$terms = get_terms($tax, [
'hide_empty' => true, // do not hide empty terms
]);
// loop through all terms
foreach($terms as $term) {
// if no entries attached to the term
if(0 == $term->count)
echo '<li><a href="#">' .$term->name. '</a></li>';
// if term has more than 0 entries
elseif($term->count > 0)
echo '<li><a href="#">' .$term->name. '</a></li>';
}
?>
してください、それは問題を解決した場合は、答えを「受け入れます」。 –