Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. <?php
  2. // another layout type
  3. else:?>
  4. <div class="col-sm-6">
  5. <div class="single_blog_area textwhite">
  6. <div class="row">
  7. <div class="col-sm-6 col-sm-push-6 no-padding">
  8. <div class="single_blog_img">
  9. <?php the_post_thumbnail(); ?>
  10. <!--<img src="assets/images/blog3.jpg" alt="" />-->
  11. </div>
  12. </div>
  13. <div class="col-sm-6 col-sm-pull-6 no-padding">
  14. <div class="single_blog_text s_b_right">
  15. <p>
  16. <a href="<?php the_permalink();?>">
  17. <?php the_category( ' ' ); ?></a>
  18. </p>
  19. <h3>
  20. <a href="<?php the_permalink(); ?>">
  21. <?php the_title(); ?></a>
  22. </h3>
  23. <div class="separator2">
  24. </div>
  25. <?php $content = get_the_content(); ?>
  26. <p>
  27. <?php echo wp_trim_words($content, 43); ?>
  28. </p>
  29. <a href="<?php the_permalink();?>" class="read_more">Read More >></a>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. </div>
  35. <?php endif;?>
  36. <?php endforeach; ?>
  37. <?php endwhile; endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement