kalponikoronno

template one page site treehouse

Feb 19th, 2015
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template Name: One page site
  4. */
  5.  
  6. get_header(); ?>
  7.  
  8.     <?php
  9.     $args = array('post_type' => 'page', 'order' => 'ASC', 'orderby' => 'menu_order');
  10.     $the_query = new WP_Query($args);
  11.     ?>
  12.  
  13.     <?php if(have_posts()) : while($the_query->have_posts()) : $the_query->the_post(); ?>
  14.    
  15.         <?php get_template_part( 'content', 'page'); ?>
  16.        
  17.     <?php endwhile; endif; ?>
  18.  
  19. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment