forked from hacklabcbba/Ciudadania-Activa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-about.php
80 lines (62 loc) · 1.73 KB
/
page-about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
/* Template name: About */
get_header();
if ( have_posts() ) {
while ( have_posts() ) : the_post();
// containers
$pages_loop = "";
$pages_nav = "<ul class='list-unstyled quincem-smooth'>";
// children pages query
$args = array(
'post_type' => 'page',
'orderby' => 'menu_order',
'order' => 'ASC',
'post_parent' => $post->ID,
'posts_per_page' => -1
);
$children = get_posts($args);
// parent page
$parent_slug = $wp_query->query_vars['pagename'];
$parent_tit = get_the_title();
$pages_nav .= "<li><a href='#" .$parent_slug. "'>" .$parent_tit. "</a></li>";
// children pages
if( count($children) > 0 ) {
foreach ( $children as $child ) {
//print_r($child);
$page_slug = $child->post_name;
$page_tit = "<h2 class='child-tit'>" .$child->post_title. "</h2>";
$page_desc = apply_filters( 'the_content', $child->post_content );
include "loop-about.php";
// navbar
$pages_nav .= "<li><a href='#" .$page_slug. "'>" .$child->post_title. "</a></li>";
} // end loop children
$pages_nav .= "</ul>";
} else {
$pages_nav = "";
} //end if children pages
?>
<div id="<?php echo $parent_slug ?>" class="container-full">
<div class="container">
<div class="row">
<div class="col-md-8 col-sm-9">
<section class="hair">
<header>
<h1 class="parent-tit"><?php echo $parent_tit; ?></h1>
</header>
<div class="page-desc">
<?php the_content(); ?>
</div>
</section>
<?php // subpages
echo $pages_loop; ?>
</div><!-- .col-md-8 .col-sm-9 -->
<nav id="about-nav" class="col-md-4 col-sm-3 hidden-xs">
<?php echo $pages_nav; ?>
</nav>
</div><!-- .row -->
</div><!-- .container -->
</div><!-- .container-full -->
<?php endwhile;
} // end if posts
?>
<?php get_footer(); ?>