Skip to content

Instantly share code, notes, and snippets.

@chocotaro
Last active August 12, 2016 06:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chocotaro/e345e3906a0a20ce0c7b6d697e119ab4 to your computer and use it in GitHub Desktop.
Save chocotaro/e345e3906a0a20ce0c7b6d697e119ab4 to your computer and use it in GitHub Desktop.
記事ループの基本形
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>
<?php else : ?>
記事がありません
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment