テンプレートタグ
テーマディレクトリのパスを取得します。
1 |
<?php echo get_template_directory_uri(); ?> |
サイトURLを表示します。
1 |
<?php echo home_url(); ?> |
条件分岐
ホーム(TOPページ)にだけ表示する
1 2 3 |
<?php if ( is_home() || is_front_page() ) : ?> //内容 <?php endif; ?> |
ホーム(TOPページ)にだけ表示しない
1 2 3 |
<?php if ( !is_home() && !is_front_page() ) : ?> //内容 <?php endif; ?> |
ホーム(TOPページ)とほかのページの分岐
1 2 3 4 5 |
<?php if ( is_home() || is_front_page() ) : ?> トップページの内容 <?php else : ?> ほかのページの内容 <?php endif; ?> |
参考にさせていただきました↓
https://wordpressmatome.com/%E8%A6%9A%E3%81%88%E3%82%8B%E3%81%B9%E3%81%8Dwordpress%E3%83%86%E3%83%B3%E3%83%97%E3%83%AC%E3%83%BC%E3%83%88%E3%82%BF%E3%82%B0/
https://www.genius-web.co.jp/blog/website-operation/wordpress-primary-to-senior-high-templar-template-tug.html