Guest User

Untitled

a guest
Mar 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?php if (has_children()): ?>
  2. <section class="full-width subnav">
  3. <div class="container">
  4.  
  5. <nav class="row text-center">
  6. <div class="col-12">
  7. <?php
  8. $args = array(
  9. 'parent' => $post->ID,
  10. 'post_type' => 'page',
  11. 'post_status' => 'publish'
  12. );
  13. $pages = get_pages($args); ?>
  14. <ul class="list-unstyled">
  15. <?php foreach( $pages as $page ) { ?>
  16. <li>
  17. <a href="<?php echo get_permalink($page->ID); ?>" rel="bookmark"><?php echo $page->post_title; ?>
  18. </a>
  19. </li>
  20. <?php } ?>
  21. </ul>
  22. </div>
  23. </nav>
  24.  
  25. </div>
  26. </section>
  27. <?php endif; ?>
Add Comment
Please, Sign In to add comment