Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php query_posts('post_type=page&order=ASC&post_parent=0');
  2. while(have_posts() ) : the_post(); ?>
  3. <a href="<?php the_permalink() ?>">
  4. <?php the_post_thumbnail(); ?>
  5. <?php the_title(); ?>
  6. </a>
  7. <?php endwhile;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement