Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <div class="span2 first-page-article">
  2. <?php while (have_posts()) :the_post(); ?>
  3. <?php if (has_tag('start-smaka')) : ?>
  4. <?php
  5. if (has_post_thumbnail())
  6. {
  7. ?>
  8. <div>
  9. <?php the_post_thumbnail(); ?>
  10. </div>
  11. <?php
  12. }
  13. ?>
  14. <div class="first-page-article-description">
  15. <h2><?php echo get_the_title(); ?></h2>
  16. <div><?php the_content(); ?></div>
  17. </div>
  18. <?php endif ?>
  19. <?php endwhile ?>
  20. </div><!--/span-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement