Advertisement
Guest User

Untitled

a guest
May 16th, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.85 KB | None | 0 0
  1. <section class="main col-lg-8 col-md-10">
  2.   <?php
  3.     if (have_posts()) :
  4.       while (have_posts()) : the_post(); ?>
  5.       <article class="main__post">
  6.         <div class="main__post-category post-category">
  7.           <?php the_category(); ?>
  8.         </div>
  9.         <div class="main__post-thumbnail post-thumbnail">
  10.           <?php the_post_thumbnail('small-thumbnail'); ?>
  11.         </div>
  12.         <h2 class="main__post-title post-title">
  13.           <a href="<?php the_permalink(); ?>">
  14.             <?php the_title(); ?>
  15.           </a>
  16.         </h2>
  17.         <div class="main__post-content post-content">
  18.             <?php echo strip_tags(get_the_excerpt(), '<p>'); ?>
  19.         </div>
  20.       </article>
  21.  
  22.     <?php endwhile;
  23.  
  24.     else :
  25.       echo "<p class\"error page__error\">No posts have been found to display</p>";
  26.  
  27.     endif;
  28.     ?>
  29. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement