Advertisement
campusboy

Eismond Andrey

Jul 4th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.99 KB | None | 0 0
  1. <?php
  2. $myposts = get_posts( array(
  3.     'posts_per_page' => 5,
  4.     'category'       => 14
  5. ) );
  6.  
  7. if ( $myposts ):
  8.     ?>
  9.     <section class="upsell">
  10.         <div class="container">
  11.             <div class="row">
  12.                 <h2>Кровельные работы</h2>
  13.                 <p class="upsell-desc">
  14.                     Наша компания выполняет весь необходимый комплекс по монтажу кровли
  15.                     <br>из любых материалов:
  16.                 </p>
  17.                 <?php
  18.                 global $post;
  19.  
  20.                 foreach ( $myposts as $post ) {
  21.                     setup_postdata( $post );
  22.                     ?>
  23.  
  24.                     <div class="col-md-3 col-sm-6 col-xs-12">
  25.                         <div class="upsell-block">
  26.                             <?php the_post_thumbnail(); ?>
  27.                             <b><?php the_title(); ?></b>
  28.                         </div>
  29.                     </div>
  30.  
  31.                     <?php
  32.                 }
  33.  
  34.                 wp_reset_postdata();
  35.                 ?>
  36.     </section>
  37. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement