This file contains 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> |
This file contains 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
<!-- | |
****************************** | |
@初期設定 | |
HTMLテンプレート | |
HTMLバージョン:HTML5 | |
文字コード:UTF-8 | |
Bootstrap | |
****************************** | |
--> | |
<!DOCTYPE html> |
This file contains 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
<div class="container" style="padding: 10px; background-image: url(./images/star.gif)"> <!-- .containerに背景画像を設定 --> | |
<div class="row" style="background-color: green; margin-left: 0; margin-right: 0;"> | |
<div class="col-sm-4" style="background-color: blue; padding: 0;"> | |
<img src="./images/img1.jpg"> | |
</div> | |
<div class="col-sm-4" style="background-color: yellow; padding: 0;"> | |
<img src="./images/img4.jpg"> | |
</div> | |
<div class="col-sm-4" style="background-color: purple; padding: 0;"> | |
<img src="./images/img5.jpg"> |
This file contains 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
<div class="container" style="background-color: red; padding: 10px;"> | |
<div class="row" style="background-color: green; margin-left: 0; margin-right: 0;"> | |
<div class="col-sm-4" style="background-color: blue; padding: 0;"> <!-- padding:0指定--> | |
<img src="./images/img1.jpg"> | |
</div> | |
<div class="col-sm-4" style="background-color: yellow; padding: 0;"> <!-- padding:0指定--> | |
<img src="./images/img4.jpg"> | |
</div> | |
<div class="col-sm-4" style="background-color: purple; padding: 0;"> <!-- padding:0指定--> | |
<img src="./images/img5.jpg"> |
This file contains 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
<div class="container" style="background-color: red; padding: 10px;"> <!-- padding:10px指定 --> | |
<div class="row" style="background-color: green; margin-left: 0; margin-right: 0;"> <!-- .rowのネガティブマージンを削除 --> | |
<div class="col-sm-4" style="background-color: blue;"> | |
<img src="./images/img1.jpg"> | |
</div> | |
<div class="col-sm-4" style="background-color: yellow;"> | |
<img src="./images/img4.jpg"> | |
</div> | |
<div class="col-sm-4" style="background-color: purple;"> | |
<img src="./images/img5.jpg"> |
This file contains 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
<div class="container" style="background-color: red; padding: 10px;"> <!-- 単にpadding:10pxと指定 --> | |
<div class="row" style="background-color: green;"> | |
<div class="col-sm-4" style="background-color: blue;"> | |
<img src="./images/img1.jpg"> | |
</div> | |
<div class="col-sm-4" style="background-color: yellow;"> | |
<img src="./images/img4.jpg"> | |
</div> | |
<div class="col-sm-4" style="background-color: purple;"> | |
<img src="./images/img5.jpg"> |
NewerOlder