Last active
November 5, 2015 05:17
-
-
Save blockworks/599390641c9eecc9e95b to your computer and use it in GitHub Desktop.
WordPressでよくあるループ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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