Advertisement
Guest User

Andrey Tkachenko

a guest
Jun 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.92 KB | None | 0 0
  1. <?php if ( have_posts() ): ?>
  2.  
  3.     <ul>
  4.  
  5.         <?php while ( have_posts() ): the_post(); ?>
  6.  
  7.             <li class="col-sm-6">
  8.                 <div class="post-thumb">
  9.                     <?php the_post_thumbnail( $size, $attr ); ?>
  10.                 </div>
  11.  
  12.                 <div class="post-content">
  13.                     <h3><?php the_title(); ?></h3>
  14.  
  15.                     <div class="post-date">
  16.                         <i class="far fa-calendar-alt"></i> <?php echo get_the_date(); ?>
  17.                     </div>
  18.  
  19.                     <div class="posts-list-content">
  20.                         <p><?php the_excerpt(); ?></p>
  21.                     </div>
  22.                 </div>
  23.  
  24.                 <div class="read-more">
  25.                     <a href="<?php the_permalink(); ?>">more</a>
  26.                 </div>
  27.             </li>
  28.  
  29.         <?php endwhile; ?>
  30.  
  31.     </ul>
  32.  
  33. <?php else: ?>
  34.     <p>Сорян, записей нет.</p>
  35. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement