テンプレートを読み込む
Word Pressのテンプレートタグでまず使用頻度が高いであろう、
ヘッダー(header.php)、フッター(footer.php)などのテンプレートを読み込むテンプレートタグ。
それぞれ以下のように記述します。
ヘッダー(header.php)を読み込む
<?php get_header(); ?>
フッター(footer.php)を読み込む
<?php get_footer(); ?>
サイドバー(sidebar.php)を読み込む
<?php get_sidebar(); ?>
検索フォームテンプレート(searchform.php)を読み込む
<?php get_search_form(); ?>
コメントテンプレート(comments.php)を読み込む
<?php comments_template(); ?>
独自で作ったテンプレートを読み込む(1)
<?php include( TEMPLATEPATH . '/sample.php' ); ?>
独自で作ったテンプレートを読み込む(2) ※Word Press3.0以降対応
<?php get_template_part('sample'); ?>
<?php get_template_part(''); ?>では、
例えばsample.phpというファイルを読み込みたいなら、カッコ内にsampleと記述します。
※拡張子は付けない
タグ: comments_template, get_header, get_search_form, get_sidebar, get_template_part
記事公開日:
最終更新日:
コメントを残す