Advertisement
iftekharul

Different section per row

Oct 1st, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.63 KB | None | 0 0
  1. <?php
  2. //theme options
  3. $sellbazar_theme_option = get_option( 'my_framework' );
  4. $credit_home_meta = get_post_meta(get_the_ID(), 'home-meta', true);
  5. $i = 1;
  6. ?>
  7. <section id="domain-hosting-area">
  8.     <div class="container">
  9.         <div class="row">
  10.             <div class="col-lg-12 text-center">
  11.                 <div class="domain-hosting section-title">
  12.                     <h2><?php echo esc_html($sellbazar_theme_option['domain-section-area-title']); ?></h2>
  13.                 </div>
  14.             </div>
  15.         </div>
  16.         <!-- ------------------- section-1 Blocks --------------->
  17.         <?php
  18.         $domain_hosting_area = new WP_Query( array( 'post_type' => 'domain-hosting' ) );
  19.         while($domain_hosting_area->have_posts()) : $domain_hosting_area-> the_post();
  20.             if($i % 2 == 0) : ?>
  21.                 <div class="row">
  22.                     <div class="col-lg-6 col-md-6 text-center">
  23.                         <div class="section-text-content-blocks section-margin">
  24.                             <h2><?php the_title(); ?></h2>
  25.                             <h4>lorem ipsum</h4>
  26.                             <?php the_content(); ?>
  27.                             <div class="buy-now-btn">
  28.                                 <a href="#"><span><i class="fas fa-shopping-cart"></i></span>Buy Hosting</a>
  29.                             </div>
  30.                         </div>
  31.                     </div>
  32.                     <div class="col-lg-6 col-md-6 text-center">
  33.                         <div class="section-img-background-content-blocks section-margin">
  34.                         <a href="#"><?php the_post_thumbnail(); ?></a>
  35.                         </div>
  36.                     </div>
  37.                 </div>
  38.             <?php else : ?>
  39.                 <div class="row">
  40.                     <div class="col-lg-6 col-md-6 text-center">
  41.                         <div class="section-img-background-content-blocks section-margin">
  42.                         <a href="#"><?php the_post_thumbnail(); ?></a>
  43.                         </div>
  44.                     </div>
  45.                     <div class="col-lg-6 col-md-6 text-center">
  46.                         <div class="section-text-content-blocks section-margin">
  47.                             <h2><?php the_title(); ?></h2>
  48.                             <h4>lorem ipsum</h4>
  49.                             <?php the_content(); ?>
  50.                             <div class="buy-now-btn">
  51.                                 <a href="#"><span><i class="fas fa-shopping-cart"></i></span>Buy Hosting</a>
  52.                             </div>
  53.                         </div>
  54.                     </div>
  55.                 </div>
  56.             <?php endif; ?>
  57.             <?php $i++; ?>
  58.         <?php endwhile; ?>
  59.     </div>
  60. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement