Guest User

Untitled

a guest
Apr 23rd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <?php
  2. global $post;
  3. $args = array(
  4. 'parent' => $post->ID,
  5. 'post_type' => 'page',
  6. 'post_status' => 'publish'
  7. );
  8. $children = get_pages( $args );
  9.  
  10. if ( ! empty( $children ) ) :
  11. ?>
  12. <div class="childcells">
  13. <?php
  14. foreach ( $children as $post ) : setup_postdata( $post );
  15. ?>
  16. <div class="childcell">
  17. <?php if ( has_post_thumbnail() ) : ?>
  18. <div class="thumbnail"><?php the_post_thumbnail( 'small-thumb' ); ?></div>
  19. <?php endif; ?>
  20. <div class="myclasstitle"><?php the_title(); ?></div>
  21. <span class="desc"><?php echo get_post_meta( get_the_ID(), 'desc', true ); ?></span>
  22. <div class="excerpt"><?php the_excerpt(); ?></div>
  23. <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">Read more</a>
  24. </div>
  25. <?php
  26. endforeach;
  27. wp_reset_postdata();
  28. ?>
  29. </div>
  30. <?php endif; ?>
Add Comment
Please, Sign In to add comment