基本的なやつ
<?php the_category(); ?> // カテゴリー
<?php echo get_the_date(); ?> // 日付
<?php echo get_the_title(); ?> // タイトル
<?php the_post_thumbnail('thumbnail'); ?> // サムネイル
<?php the_permalink(); ?> // パーマリンク
<?php echo get_template_directory_uri(); ?> // 画像ファイルの前
切り出したテンプレートを出力 wpdocs
<?php get_template_part( $slug ); ?>
<?php
$args = array(
'post_type' => 'post',
'posts_per_page' => -1,
'no_found_rows' => true, //ページャーを使う時はfalseに。
);
$the_query = new WP_Query($args);
if ($the_query->have_posts()) :
while ($the_query->have_posts()) : $the_query->the_post();
endwhile;endif;
wp_reset_postdata();
?>
ダッシュボードで設定できるメニューの出力 wpdocs
<?php
$args = array(
'menu_class' => 'menu',
'container' => false,
wp_nav_menu( $args );
?>
bodyになんか適当にクラスを振ってくれるやつ wpdocs
<body <?php body_class( $class ); ?>> // 基本的に$classは空白でよい
カスタム投稿タイプ wpdocs
<?php register_post_type( $post_type, $args ); ?>