問題
Wordpresでタームのディスクリプションを表示するには?
解決策
「term_description()」で取得できる。
Wordpresでタームのディスクリプションを取得する「term_description()」
「term_description()」を記述することで、タームのディスクリプションを取得することができます。
「term_description()」の記述方法
「term_description()」の記述方法は以下になります。
term_description( 'タームのID', 'タクソノミー名' );
記述例
実際に使用する記述例は以下になります。
<?php
$term_desc = term_description( $term_id, $taxonomy );
if( !empty( $term_desc ) ):
echo $term_desc;
endif;
?>
参照
【関数リファレンス/term description – WordPress Codex 日本語版】
https://wpdocs.osdn.jp/%E9%96%A2%E6%95%B0%E3%83%AA%E3%83%95%E3%82%A1%E3%83%AC%E3%83%B3%E3%82%B9/term_description
コメント