Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: portfolio pagina
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7.  
  8. <section class="row">
  9. <div class="small-12 columns text-center">
  10. <div class="leader">
  11.  
  12. <!-- BEGIN VAN DE LOOP -->
  13. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  14.  
  15. <h1><?php the_title(); ?></h1>
  16. <?php the_content(); ?>
  17.  
  18. <?php endwhile; endif; ?>
  19. <!-- EINDE VAN DE LOOP -->
  20.  
  21. </div>
  22. </div>
  23. </section>
  24.  
  25. <?php
  26.  
  27. $args = array(
  28. 'post-type' => 'portfolio'
  29. );
  30. $query = new WP_Query( $args );
  31.  
  32. ?>
  33.  
  34. <section class="row no-max pad">
  35.  
  36. <?php if( $query->have_posts() ) : while( $query->have_posts() ) : $query->the_post(); ?>
  37.  
  38. <div class="small-6 medium-4 large-3 columns grid-item">
  39. <a href="<?php the_permalink(); ?>"><img /><?php the_post_thumbnail( 'large' ); ?></a>
  40. </div>
  41.  
  42. <?php endwhile; endif; wp_reset_postdata(); ?>
  43.  
  44. </section>
  45.  
  46.  
  47. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement