Nakkan Base

絶対に必要なテンプレート

WordPress化するときに絶対に必要なテンプレート。
まず思いつくものから少しずつ書き留めておこう。

★get_header();
 テンプレートファィルheader.phpを読み込む。

★get_footer();
 テンプレートファイルfooter.phpを読み込む。

★wp_head();
 これを忘れるとプラグインが動かない。
 </head>の直前につける。

★wp_footer();
 wp_head();と同じく、これを忘れるとプラグインが動かない。
 </body>の直前につける。

★wp_body_open();
 比較的新しい機能で、今後は必須に近くなるかな〜とここにあげておきましょう。
 header.php の bodyタグ直下に設置。そしてfunctions.phpに下記を書き込みます。 

  if ( ! function_exists( ‘wp_body_open‘ ) ) {
    function wp_body_open() {
     do_action( ‘wp_body_open‘ );
   }
  }

★body_class();
 このテンプレートタグに関しては「必須ではない」と言いつつ、DEBAGにかければ「body_class()がありません」とか出てくる。結局つけなさいということ。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

*


Warning: Trying to access array offset on value of type bool in /home/c3055871/public_html/nakkan-base.blog/wp-content/plugins/siteguard/really-simple-captcha/siteguard-really-simple-captcha.php on line 353

Warning: Trying to access array offset on value of type bool in /home/c3055871/public_html/nakkan-base.blog/wp-content/plugins/siteguard/really-simple-captcha/siteguard-really-simple-captcha.php on line 353

CAPTCHA