Wordpress Code Basic

トップページへ戻る

■ファイル、パスのインクルードタグ

● header.php 読み込み

<?php get_header(); ?>
<?php get_header('slug'); ?>
● sidebar.php 読み込み

<?php get_sidebar(); ?>
<?php get_sidebar('slug'); ?>
● footer.php 読み込み

<?php get_footer(); ?>
<?php get_footer('slug'); ?>
● その他テンプレートファイルの読み込み

<?php include( TEMPLATEPATH . '/~.php' ); ?>

・shoplist.phpの場合
<?php get_template_part('shoplist'); ?>

・includeフォルダ内のinc-shoplist.phpの場合
<?php get_template_part('include/inc','shoplist'); ?>
● テーマ直下のcssファイルのパス

<?php echo get_stylesheet_uri(); ?>
● テンプレートディレクトリーパス

<?php echo get_template_directory_uri(); ?>