LoginSignup
2
2

More than 5 years have passed since last update.

WordPressで難しかったところをメモ

Posted at

WordPressのメモ

ヘッダーやフッターなどの基本的な部分はインクルードタグでサポートされている.

  • get_header()や,get_footer()のことをインクルードタグといい,これらを実行することで,header.php, footer.phpを実行してくれる.

  • 今回使用したインクルードタグ

  •  get_header(), get_footer(), get_sidebar()
    

テンプレート階層によってサポートされている。

テンプレート階層

  • 特定のページを開くときにそれを実際に表示するためのプログラムを階層的に探して表示する仕組みのことで,WordPressではテンプレート階層の画像(WordPress Codexより)のようになっている.

  • 今回作成したファイル

  •  index.php, header.php, sidebar.php, footer.php, single.php, page.php, functions.php
    
  • functions.phpは特殊でWordPress自身の機能を使うことを宣言するファイルでメニューなどの外観をWordPressのGUIで操作できるように設定したりすることができる.

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2