WordPressで子カテゴリースラッグを取得して、配置する際に注意すること。
<?php $cats = get_the_category(); foreach($cats as $cat): if($cat->parent) echo $cat->slug; endforeach; ?>
これだと子カテゴリーが複数設定してある場合に、スラッグが連続して表示されるのを間隔を空けて挿入できるように変更。
<?php $cats = get_the_category(); foreach($cats as $cat): if($cat->parent) echo $cat->slug . ' '; endforeach; ?>