Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <div class="col-sm-6 col-md-4 padding-fixation">
  2. <?php $portfolio_home = new WP_Query('cat=1'); ?>
  3. <?php while($portfolio_home->have_posts()) : $portfolio_home->the_post(); ?>
  4. <div class="image-portfolio" data-section="office">
  5. <div class="img-block">
  6. <img class="img-responsive" src="<?php the_post_thumbnail(); ?>" alt="">
  7. </div>
  8. <div class="overlay-header">
  9. <h1><?php the_title(); ?></h1>
  10. </div>
  11. <div class="text-overlay">
  12. <p><?php the_content(); ?></p>
  13. </div>
  14. </div>
  15. <?php endwhile; ?>
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement