kisukedeath

All pages in index - Wordpress

Dec 13th, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <?php query_posts(array('post_type'=>'page','order'=>'ASC')); ?>
  2. <?php while ( have_posts() ) : the_post() ?>
  3. <?php
  4. global $post;
  5. $slug = $post->post_name;
  6. ?>
  7. <div id="<?php echo $slug; ?>" class="wrapper">
  8. <?php get_template_part($slug); ?>
  9. <?php wp_reset_postdata(); ?>
  10. </div><!-- main -->
  11. <?php endwhile ?>
  12. <?php wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment