1 2 3 4 5 6 7 8 | <?php //タグ名リンク無しで取得 $posttags = get_the_tags(); if ( $posttags ) { foreach ( $posttags as $tag ) { echo $tag ->name . ',' ; } } ?> |
1 2 3 4 5 6 7 8 | <?php //タグ名リンク無しで取得 $posttags = get_the_tags(); if ( $posttags ) { foreach ( $posttags as $tag ) { echo $tag ->name . ',' ; } } ?> |