single.phpにカテゴリーリンクを貼る

WordPress
<?php
    if ( has_category() ) {
        echo get_the_category_list('');
    }
?>

BACK