希望のターム一覧になりません。
-
下記コードでターム一覧は取得できました。
しかし、本来やりたいのは親カテゴリ名
子カテゴリ一覧親カテゴリ名
子カテゴリ一覧親カテゴリ名
子カテゴリ一覧という並びです。
下記コードをどのようにすればそうなるでしょうか?初心者ですいませんがよろしくお願いします。
// タクソノミ取得 $cat = array( 'taxonomy' => 'product_cat' ); $terms = get_categories($cat); if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){ echo '<ul>'; foreach ( $terms as $term ) { if($term->parent) echo '<li><a href="http://miki-bx.co.jp/wp/product_cat/' . $taxonomy . '/' . $term->slug . '"><h3>' . $term->name . '</h3>' .get_term_thumbnail( $term->term_taxonomy_id, $size = 'category-thumb', $attr = '' ) . '</a></li>'; } echo '</ul>'; }
ヘルプの必要なページ: [リンクを見るにはログイン]
2件の返信を表示中 - 1 - 2件目 (全2件中)
2件の返信を表示中 - 1 - 2件目 (全2件中)
- トピック「希望のターム一覧になりません。」には新たに返信することはできません。