Advertisement
Guest User

Untitled

a guest
Feb 10th, 2012
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'post_parent' => $post->ID,
  4. 'post_type' => 'page',
  5. 'post_status' => 'publish',
  6. 'posts_per_page' => 5
  7. );
  8. $postslist = get_posts($args);
  9. foreach ($postslist as $post) :
  10. setup_postdata($post);
  11. ?>
  12. <div class="portfolio_box">
  13. <div>
  14. <h2 ><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('thumbnail');; ?> <?php the_title(); ?></a></h2>
  15. </div>
  16. <div class="indexexcerpt">
  17. <?php the_excerpt(); ?> <div style="text-align:right">[ <a href="<?php the_permalink(); ?>">Далее</a> ]</div>
  18. </div>
  19. <div class="divider"> </div>
  20. </div>
  21.  
  22. <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement