Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Index Page
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7. <?php $about = new WP_Query( 'pagename=home' ); ?>
  8. <?php if( $about->have_posts() ) : $about->the_post(); ?>
  9. <?php the_content(); ?>
  10. <?php endif; ?>
  11.  
  12. <?php $service = new WP_Query( 'pagename=service' ); ?>
  13. <?php if( $service->have_posts() ) : $service->the_post(); ?>
  14. <?php the_content(); ?>
  15. <?php endif; ?>
  16.  
  17. <?php $portfolio = new WP_Query( 'pagename=portfolio' ); ?>
  18. <?php if( $portfolio->have_posts() ) : $portfolio->the_post(); ?>
  19. <?php the_content(); ?>
  20. <?php endif; ?>
  21. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement