アーカイブ内でカスタム投稿のカテゴリースラッグ を出力する

カスタム投稿のカテゴリースラッグ を出力する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;
}  }; ?>