Skip to content

Instantly share code, notes, and snippets.

@yujiokayama
Last active April 29, 2017 07:44
Show Gist options
  • Save yujiokayama/b8ff0a81b403dfb78457675cec1f2c17 to your computer and use it in GitHub Desktop.
Save yujiokayama/b8ff0a81b403dfb78457675cec1f2c17 to your computer and use it in GitHub Desktop.
WordPressで「カテゴリー名表示+色分け」で表示する
<?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