Advertisement
Guest User

Tempcc

a guest
Sep 19th, 2019
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'orderby' => 'title',
  4. 'post_type' => 'studentensteden',
  5. );
  6. $the_query = new WP_Query( $args );
  7. ?>
  8. <?php if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
  9. <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
  10. <div class="sclisting">
  11. <?php if ( has_post_thumbnail() ) : ?>
  12. <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
  13. <?php the_post_thumbnail( 'large' ); ?>
  14. </a>
  15. <?php endif; ?>
  16. <h3 class="the-title"><?php the_title(); ?></h3>
  17. <div class="isbn-number">Provincie <?php the_field('provincie');?> | Gemeente <?php the_field('gemeente');?> | <?php the_field('aantalinwoners');?> Inwoners</div>
  18. <div class="isbn-number">Opleidingen | Hogescholen | Universiteiten</div>
  19. <div class="isbn-number">In totaal studeren er <?php the_field('studentenstuderend');?> studenten en wonen er <?php the_field('studentenwoonachtig');?> studenten.</div>
  20. <div class="isbn-number">Je vindt er <?php the_field('aantalbioscopen');?> bioscopen, <?php the_field('aantalkroegen');?> kroegen, <?php the_field('aantalmusea');?> musea en <?php the_field('aantaltheaters');?> theaters.</div>
  21. </div></a>
  22. <?php endwhile; else: ?> <p>Sorry, there are no posts to display</p> <?php endif; ?>
  23. <?php wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement