// 基本
wp_head();
wp_footer();
// ヘッダー・フッター
get_header();
get_footer();
get_header('名前'); // header-名前.php
get_footer('名前'); // footer-名前.php
// bodyクラス
body_class();
// テンプレートファイル
get_template_part('ファイル名');
get_template_part('ファイル名', '名前');
get_template_part('フォルダ/ファイル名');
get_template_part('フォルダ/ファイル名', '名前');
// 投稿関連
have_posts();
the_post();
the_title();
the_excerpt();
the_content();
the_permalink();
get_permalink();
the_time('フォーマット');
get_the_category();
// アイキャッチ画像
has_post_thumbnail();
the_post_thumbnail('サイズ');
// URL取得
home_url();
get_template_directory_uri();
get_stylesheet_directory_uri();
get_theme_file_uri();
esc_url();
// ループ用クエリ
WP_Query(); // カスタムループ用