peanutheroo

loop index

Nov 23rd, 2016
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <div class="row">
  2.     <?php
  3.     if(have_posts()) {
  4.         while (have_posts()) {
  5.             the_post(); ?>
  6.             <div class="col-xs-6 col-lg-4">
  7.                 <?php
  8.                 the_title('<h2>', '</h2>');
  9.                 the_post_thumbnail('full', array('class' => 'img-responsive'));
  10.                 the_excerpt('<p>', '</p>'); ?>
  11.                 <p>
  12.                     <a href="<?php the_permalink(); ?>" class="btn btn-default" role="button">Lire la suite ยป</a>
  13.                 </p>
  14.             </div>
  15.         <?php }
  16.     } ?>
  17. </div>
Add Comment
Please, Sign In to add comment