ごく標準的なWordPressのループ
管理画面で入力した投稿のタイトルと本文を表示するだけのごく標準的なWordPressのループ。
投稿があったら、投稿がある間ループを続け、投稿を出力する。
1 2 3 4 5 6 7 8 9 10 11 12 |
<?php if(have_posts()): while(have_posts): the_post(); ?> <?php the_title(); ?> <?php the_content(); ?> <?php endwhile; ?> <?php else: ?> 記事がなかったときの記述 <?php endif; ?> |
the_title( ) | 記事タイトル |
the_content( ) | 記事本文 |
the_excerpt( ) | 記事抜粋 |
コメント
コメントはありません。