Naoki-Kosuge
7/26/2019 - 6:46 AM

【WordPress】index.php

<?php get_header(); ?>

    <main>

        <?php if ( have_posts() ): while ( have_posts() ): the_post(); ?>

            <article <?php post_class(); ?>>
                <?php if ( has_post_thumbnail() ): ?>
                    <figure><?php the_post_thumbnail(); ?></figure>
                <?php endif; ?>
                <h1><?php the_title(); ?></h1>
                <?php the_content(); ?>
            </article>

        <?php endwhile; endif; ?>

    </main>

<?php get_sidebar(); ?>

<?php get_footer(); ?>