WordPress 初心者です。startbootsrap.com から Freelancer というテンプレートをダウンロードして、この中に複数の投稿を表示させたいと思っています。
https://startbootstrap.com/themes/freelancer/
テンプレートの中にある "Portfolio Item" 部分と "Portfolio Modal" 部分の両方に各投稿のデータを挿入したいのですが、全体をループで囲っているつもりではいるものの、前段の ”Portfolio Item" 部分の the_post_thumbnail()
ではしっかりとコンテンツがループされるのに、後段 "Portfolio Modal" の the_title()
や the_content()
ではひとつの投稿の内容が繰り返し表示されてしまいます。
正しい投稿の ID などを引っ張ってこれていないと思うのですが、ループで the_posts()
は指定しているつもりなので、”Portfolio Modals" のコードのどこかに the_posts() をリセットしてしまう何かが入っていたりするのでしょうか。。?それとも根本的なループの使い方などが間違っているのでしょうか?
後段の でも the_title()
や the_content()
でもループ処理ができるように修正したいです。どなたかご回答いただけますと幸いです。
php
1<!-- Portfolio Item --> 2 3<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> 4 5<div class="col-md-6 col-lg-4 mb-5"> 6 <div class="portfolio-item mx-auto" data-toggle="modal" data-target="#portfolioModal"> 7 <div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"> 8 <div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-plus fa-3x"></i></div> 9 </div> 10 <?php if (has_post_thumbnail()) : ?> 11 <?php the_post_thumbnail(); ?> 12 <?php else: ?> 13 <img class="img-fluid" src="<?php echo get_template_directory_uri(); ?>/assets/img/portfolio/cabin.png" alt="" /> 14 <?php endif; ?> 15 </div> 16</div><!-- /Portfolio Item --> 17 18<!-- Portfolio Modals --> 19<div class="portfolio-modal modal fade" id="portfolioModal" tabindex="-1" role="dialog" aria-labelledby="portfolioModal1Label" aria-hidden="true"> 20 <div class="modal-dialog modal-xl" role="document"> 21 <div class="modal-content"> 22 <button class="close" type="button" data-dismiss="modal" aria-label="Close"> 23 <span aria-hidden="true"><i class="fas fa-times"></i></span> 24 </button> 25 <div class="modal-body text-center"> 26 <div class="container"> 27 <div class="row justify-content-center"> 28 <div class="col-lg-8"> 29 <!-- Portfolio Modal - Title--> 30 <h2 class="portfolio-modal-title text-secondary text-uppercase mb-0" id="portfolioModal1Label"><?php the_title(); ?></h2> 31 <!-- Icon Divider--> 32 <div class="divider-custom"> 33 <div class="divider-custom-line"></div> 34 <div class="divider-custom-icon"><i class="fas fa-star"></i></div> 35 <div class="divider-custom-line"></div> 36 </div> 37 <!-- Portfolio Modal - Image--><img class="img-fluid rounded mb-5" src="assets/img/portfolio/cabin.png" alt="" /><!-- Portfolio Modal - Text--> 38 <p class="mb-5"><?php the_content(); ?></p> 39 <button class="btn btn-primary" data-dismiss="modal"><i class="fas fa-times fa-fw"></i>Close Window</button> 40 </div> 41 </div> 42 </div> 43 </div> 44 </div> 45 </div> 46</div><!-- /Portfolio Modals --> 47 48<?php endwhile; else: ?> 49 <p>No Posts</p> 50<?php endif; ?>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/06 15:07