Learning site for website creation

WordPressフロントページ設定とテンプレート

公開日:2015年06月23日

固定ページに最新投稿一覧を表示させた時の使用テンプレートが何なのか調べる機会があったので保存。

管理画面「設定」→「表示設定」の「フロントページの表示」

「最新の投稿」選択時

フロントページ

「front-page.php」 → 「home.php」 → 「index.php」

  • wp_title():空文字列
  • the_title():投稿(post)のタイトル

「固定ページ」選択時

フロントページ

「front-page.php」 → 「index.php」

  • wp_title():空文字列
  • the_title():固定ページ(page)のタイトル

投稿ページ

「home.php」 → 「index.php」

  • wp_title():固定ページ(page)のタイトル
  • the_title():投稿(post)のタイトル