Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <section class="section-news">
  4. <div class="container">
  5. <div class="row">
  6. <div class="col-md-8">
  7. <div class="row">
  8. <?php while ( have_posts() ) : the_post(); ?>
  9. <div class="col-sm-12 news-item single">
  10. <h1><?php the_title(); ?></h1>
  11. <div class="thumb-container">
  12. <?php the_post_thumbnail(); ?>
  13. </div>
  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_content(); ?>
  28. </div>
  29. <?php endwhile; ?>
  30. </div>
  31. </div>
  32. <div class="col-md-3 col-md-offset-1">
  33. <?php dynamic_sidebar( 'case-sidebar' ); ?>
  34. </div>
  35. </div>
  36. </div>
  37. </section>
  38.  
  39. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement