Skip to content

Instantly share code, notes, and snippets.

@blockworks
Last active November 5, 2015 05:17
Show Gist options
  • Save blockworks/599390641c9eecc9e95b to your computer and use it in GitHub Desktop.
Save blockworks/599390641c9eecc9e95b to your computer and use it in GitHub Desktop.
WordPressでよくあるループ
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
タイトル:<?php the_title(); ?>
日付:<?php the_time('Y.m.d'); ?>
<?php the_content('',FALSE,''); ?>
<?php endwhile; else: ?>
<h2>記事がありませんでした</h2>
<p>申し訳ありません。ご覧のページは存在しないか、URLが変更された可能性があります。</p>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment