Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. <div class="container">
  2. <div class="row">
  3. <div class="col-md-12">
  4. <div class="row grid">
  5. <?php if ( have_posts()) : ?>
  6. <?php while ( have_posts() ) : the_post(); ?>
  7. <div class="col-sm-4 news-item grid-item <?php getCategoryClassName(); ?>">
  8. <?php if(!empty(the_post_thumbnail)): ?>
  9. <div class="thumb-container">
  10. <a href="<?= get_the_permalink(); ?>"><?php the_post_thumbnail() ?></a>
  11. </div>
  12. <?php endif; ?>
  13. <h3><a href="<?= get_the_permalink(); ?>"><?php the_title(); ?></a></h3>
  14. <?php if(get_field('organisatie') || get_field('begin_datum') || get_field('eind_datum')): ?>
  15. <ul>
  16. <?php if(get_field('organisatie')): ?>
  17. <li><strong><?php echo get_field_object('organisatie')['label']; ?>:</strong> <?php the_field('organisatie'); ?></li>
  18. <?php endif; ?>
  19. <?php if(get_field('begin_datum')): ?>
  20. <li><strong><?php echo get_field_object('begin_datum')['label']; ?>:</strong> <?php the_field('begin_datum'); ?></li>
  21. <?php endif; ?>
  22. <?php if(get_field('eind_datum')): ?>
  23. <li><strong><?php echo get_field_object('eind_datum')['label']; ?>:</strong> <?php the_field('eind_datum'); ?></li>
  24. <?php endif; ?>
  25. </ul>
  26. <?php endif; ?>
  27. <?= the_excerpt(); ?>
  28. <p>
  29. <a href="<?= get_the_permalink(); ?>" class="btn btn-primary">Lees meer&nbsp;<i class="fa fa-caret-right"></i></a>
  30. </p>
  31. </div>
  32. <?php endwhile; ?>
  33. <?php else: ?>
  34. <div class="col-sm-12 news-item">
  35. <h3>Geen nieuwsberichten</h3>
  36. <p>
  37. Er zijn helaas geen nieuwsberichten beschikbaar! Probeer het later nog een keer :)
  38. </p>
  39. </div>
  40. <?php endif; ?>
  41. </div>
  42. </div>
  43. </div>
  44. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement