ワードプレスで自作テーマ作成-L31 メインビジュアルをトップページのみに表示
ワードプレスで自作テーマ作成シリーズ
今回は「L31 メインビジュアルをトップページのみに表示」するようにします。
「header.php」の記述の変更
「header.php」の以下の部分
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
<!--メインビジュアル--> | |
<div id="main-visual"> | |
<img src="<?php echo get_template_directory_uri();?>/images/【任意の画像】.jpg" alt="【任意】"> | |
</div> |
↑これを以下に書き換えます。
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 if(is_home()){?> | |
<div id="main-visual"> | |
<img src="<?php echo get_template_directory_uri();?>/images/【任意の画像】.jpg" alt="【任意】"> | |
</div> | |
<?php }?> |
変更は以上です。