2016-09-13 15 views
0

私はPHPとWordPressの初心者ですので、本当にあなたの助けが必要です(PHPのWordPressブログ投稿ループを別のクラスでのみ作成する方法)Wordpressのブログ投稿を別のクラスにループする

<!-- div that wrapped the large post --> 
 

 
<div class="blog"> 
 
    <a href="#"> 
 
     <div class="row"> 
 
      <div class="col-lg-8 col-md-8 col-sm-12 col-xs-12"> 
 
       <img src="img/blog-super.jpg" class="img-responsive" /> 
 
      </div> 
 
      <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12"> 
 
       <div class="img-content text-left culturo-imagery"> 
 
        <h2>The Only Thing Marketers Have to Fear Is Fear of Change</h2> 
 
        <div class="article-super"> 
 
         Gladly, a customer-service software company, is offering organizations the opportunity to connect with customers on a variety of platforms. Gladly, a customer-service software company, is offering organizations the opportunity to connect with customers on a variety of platforms.variety of platforms.variety of platforms. 
 
        </div> 
 
        <div class="date">June, 20 2016</div> 
 
       </div> 
 
      </div> 
 
     </div> 
 
    </a> 
 
</div> 
 

 
<!-- div that wrapped the large post (end) --> 
 

 
<!-- div that wrapped the small posts --> 
 

 
<div class="blog-sm"> 
 
    <div class="row"> 
 
     <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12"> 
 
      <a href=""> 
 
       <div class="img-content text-left culturo-imagery"> 
 
        <img src="img/blog1.jpg" class="img-responsive" /> 
 
        <h4>We understand the unique pressures that business owners face.</h4> 
 
        <div class="article"> 
 
         Gladly, a customer-service software company, is offering organizations the opportunity to connect with customers on a variety of platforms. 
 
        </div> 
 
        <div class="date">June, 20 2016</div> 
 
       </div> 
 
      </a> 
 
     </div> 
 
     <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12"> 
 
      <a href="#"> 
 
       <div class="img-content text-left culturo-imagery"> 
 
        <img src="img/blog2.jpg" class="img-responsive" /> 
 
        <h4>On a complete understanding, our team delivers.</h4> 
 
        <div class="article"> 
 
         Chris Grabarkiewicz of Luxottica Retail discusses how to overcome the challenge of synthesizing traditional marketing research information with Big Data to generate insights. 
 
        </div> 
 
        <div class="date">June, 20 2016</div> 
 
       </div> 
 
      </a> 
 
     </div> 
 
     <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12"> 
 
      <a href="#"> 
 
       <div class="img-content text-left culturo-imagery"> 
 
        <img src="img/blog3.jpg" class="img-responsive" /> 
 
        <h4>And we can assist you in implementing the right solutions.</h4> 
 
        <div class="article"> 
 
         Successful marketing is defined differently in different contexts. To understand its effect, researchers must consider all the factors that influence consumer choice, not just the marketing effort 
 
        </div> 
 
        <div class="date">June, 20 2016</div> 
 
       </div> 
 
      </a> 
 
     </div> 
 
    </div> 
 
</div> 
 

 
<!-- div that wrapped the small posts (end) -->

:この画像のように1つの最新のポスト..

enter image description here

は、ここではhtmlコードですあなたの中に

<?php if($wp_query->current_post == 0 && !is_paged()) : ?> 
/*the output of the first post*? 
<?php else : ?> 
/*the output of all other posts*/ 
<?php endif; ?> 

:10

は本当にあなたが一例として、条件文で一つのループを行うことができます最初のポストをキャッチするには、事前に感謝:)

-Avril-

答えて

0

をあなたの助けに感謝しますケース

<?php if($wp_query->current_post == 0 && !is_paged()) : ?> 
     <!-- div that wrapped the large post --> 

<div class="blog"> 
    <a href="#"> 
     <div class="row"> 
      <div class="col-lg-8 col-md-8 col-sm-12 col-xs-12"> 
       <img src="img/blog-super.jpg" class="img-responsive" /> 
      </div> 
      <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12"> 
       <div class="img-content text-left culturo-imagery"> 
        <h2>The Only Thing Marketers Have to Fear Is Fear of Change</h2> 
        <div class="article-super"> 
         Gladly, a customer-service software company, is offering organizations the opportunity to connect with customers on a variety of platforms. Gladly, a customer-service software company, is offering organizations the opportunity to connect with customers on a variety of platforms.variety of platforms.variety of platforms. 
        </div> 
        <div class="date">June, 20 2016</div> 
       </div> 
      </div> 
     </div> 
    </a> 
</div> 
    <div class="blog-sm"> 
    <div class="row"> 
<!-- div that wrapped the large post (end) --> 
     <?php else : ?> 

     <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12"> 
      <a href=""> 
       <div class="img-content text-left culturo-imagery"> 
        <img src="img/blog1.jpg" class="img-responsive" /> 
        <h4>We understand the unique pressures that business owners face.</h4> 
        <div class="article"> 
         Gladly, a customer-service software company, is offering organizations the opportunity to connect with customers on a variety of platforms. 
        </div> 
        <div class="date">June, 20 2016</div> 
       </div> 
      </a> 
     </div> 
     <?php endif; ?> 
</div> 
</div> 

また、私はこの記事を読むことをお勧めします。Different style for the first post

+0

おかげさまで、よろしくお願いします。 –

関連する問題