[wp]タクソノミーの並び替えを投稿ページに反映させる(Intuitive Custom Post Order)

プラグイン(Intuitive Custom Post Order)を使った場合。

参考

まんまこれ。覚えるにはちょっと長いのでコピペで済ませて読み解いて慣れるのが良いです。

【WordPress】get_the_termsを管理画面に表示されている順番に並び替える方法 |株式会社GROW(グロウ)
get_the_termsをそのまま出力すると管理画面順にならない 並び替えプラグイン Intuitive Custom Post Orderを使用している時、カスタム投稿の詳細ページ(single.php)で get_

ポイント

get_terms()で動く。

get_the_terms()だと並び替えに対応しないらしい。

なので、ややこしい組み方になる。

おまけ:タームの「説明」を表示する方法

こうする

<?php
    $terms = get_the_terms($post->ID,'【タクソノミースラッグ】');
    if($terms):
        foreach($terms as $term):
            echo '説明:'.$term->description;
            echo '名称:'.$term->name;
            echo 'スラッグ:'.$term->slug;
            echo 'URL:'.get_term_link($term);
        endforeach;
    endif;
?>

コメント

タイトルとURLをコピーしました