Last active
April 29, 2017 07:44
-
-
Save yujiokayama/b8ff0a81b403dfb78457675cec1f2c17 to your computer and use it in GitHub Desktop.
WordPressで「カテゴリー名表示+色分け」で表示する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$cat = get_the_category(); | |
$catname = $cat[0]->cat_name; //カテゴリー名 | |
$catslug = $cat[0]->slug; //スラッグ名 | |
?> | |
//<span class=”スラッグ名”>でカテゴリー名を囲む | |
<span class="<?php echo $catslug; ?>"><?php echo $catname; ?></span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment