forked from roots/sage
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprint_all.php
79 lines (58 loc) · 1.77 KB
/
print_all.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
<?php
/*
Template Name: PrintAll
*/
?>
<?php get_header(); ?>
<?php
global $limit;
global $pages_num;
$pages_num = 0;
$limit = isset($_REQUEST['limit']) ? $_REQUEST['limit'] : null;
function listPages($parent_id, $level)
{
global $limit;
global $pages_num;
if (is_numeric($limit) && ++$pages_num>$limit) return;
$args = array(
'post_type' => array( 'page' ),
'post_status' => array( 'publish' ),
'orderby' => 'menu_order',
'order' => 'asc',
'post_parent' => $parent_id,
'posts_per_page' => 900,
'post__not_in' => array( get_the_ID() )
);
query_posts( $args );
$args=array('child_of' => $parent_id, 'parent' => $parent_id, 'sort_column'=>'menu_order', 'exclude'=>get_the_ID());
$pages = get_pages($args);
if ($pages)
{
foreach ($pages as $page)
{
echo '<div class="page" style="margin-bottom:40px;" >';
if ($level==1) echo ' <div class="page-header">';
echo " <h$level class='postTitle'>".$page->post_title."</h$level>";
if ($level==1) echo ' </div>';
echo ' <div class="" >';
$content = $page->post_content;
$content = str_replace("<h$level>", "<h".($level+1).">", $content);
$content = str_replace("</h$level>", "</h".($level+1).">", $content);
echo $content;
echo ' </div>';
echo '</div>';
$next_level = $level+1;
listPages($page->ID, $next_level);
}
}
} ?>
<?php
echo '<div id="content" class="'.CONTAINER_CLASSES.'">';
echo ' <div id="main" class="'.MAIN_CLASSES.'" role="main">';
?>
<?php listPages(0, 1); ?>
<?php
echo ' </div>';
echo '</div>';
?>
<?php get_footer(); ?>