front-page.phpをサイトのTOPページとしています。
front-page.phpをサイトのTOPページとするため、固定ページ「TOPページ」を作成しました。
投稿記事一覧ページを作成するため、固定ページ「Works一覧」を作成しました。
サイトのTOPページはfront-page.phpが適用されているのですが、TOPページのメインループの箇所が以下のように、固定ページ「TOPページ」がループ表示されています。
front-page.php内のメインループは以下のように書いています。
html
1 <section class="secIndex topWorks"> 2 <div class="container"> 3 <div class="contentB topWorks__wrapper"> 4 <div class="contentB__left topWorks__left"> 5 <h2 class="c-title-index01">Works</h2> 6 </div> 7 <div class="contentB__right topWorks__right"> 8 <div class=" program--list topWorks__program--list fadein_list"> 9 <?php if (have_posts() ): ?> 10 <?php while ( have_posts() ) : the_post();?> 11 <article> 12 <a href="<?php the_permalink(); ?>"> 13 <span class="program--cate">地上波</span> 14 <h2 class="program--text"><?php the_title(); ?></h2> 15 </a> 16 </article> 17 <?php endwhile; ?> 18 <?php else: ?> 19 <h2 class="program--text">投稿が見つかりません。</h2> 20 <?php endif; ?> 21 </div> 22 </div> 23 </div> 24 <div class="morebtn__outer"><a href="<?php echo esc_url(home_url('/works/')); ?>" class="button--more"> MORE </a></div> 25 </div> 26 </section>``` 27 28TOPページ(front-page.php)内に投稿記事の一覧をループ表示させるにはどうすればいいでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。