カスタム投稿のカテゴリースラッグ を出力するmemo
https://www.simplesimplesdesign.com/web/application/wordpress/get-the-terms-get-terms/
<?php if ($terms = get_the_terms($post->ID, 'カスタム投稿カテゴリ名')) {
foreach ($terms as $term) {
echo $term->slug;
} }; ?>
WordPress、HTML、CSS、JSに関する備忘録
カスタム投稿のカテゴリースラッグ を出力するmemo
https://www.simplesimplesdesign.com/web/application/wordpress/get-the-terms-get-terms/
<?php if ($terms = get_the_terms($post->ID, 'カスタム投稿カテゴリ名')) {
foreach ($terms as $term) {
echo $term->slug;
} }; ?>