Created
May 19, 2019 15:18
-
-
Save yutaide/fc0a2b59447af69c8eb69d0445f2f211 to your computer and use it in GitHub Desktop.
カテゴリーページへのリンク
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 | |
$category_id = get_cat_ID('Blog');//指定したカテゴリーのIDを取得 | |
$category_link = get_category_link($category_id);//このカテゴリーのURLを取得 | |
?> | |
<li class="nav-item"> | |
<a class="nav-link" href="<?php echo esc_url($category_link); ?>">Blog <span class="sr-only">(current)</span></a> | |
</li> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment