ループの条件分岐について
-
カスタム投稿のアーカイブページに記事を順番に表示させたいのですが、
ループの書き方が分かりません。<?php if(have_posts()): while(have_posts()): the_post(); ?> <div id="outline" class="article"> <article> <h1 class="pagetitle"><?php the_title(); ?></h1> </article> </div> <div class="pagebody"> <?php the_content(); ?> </div> </div> <?php endwhile; endif; ?>
これと
<?php if(have_posts()): while(have_posts()): the_post(); ?> <div id="ideal" class="article_half"> <h1 class="pagetitle"><?php the_title(); ?></h1> <?php the_content(); ?> </div> </div> <?php endwhile; endif; ?>
記事のIDを指定して上のループを一回だけ実行して、
下のループを上の記事以外の記事がなくなるまで実行させたいです。すみません、お願いいたします
1件の返信を表示中 - 1 - 1件目 (全1件中)
1件の返信を表示中 - 1 - 1件目 (全1件中)
- トピック「ループの条件分岐について」には新たに返信することはできません。