-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
31 lines (24 loc) · 1006 Bytes
/
page.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
<?php
/**
* The template for displaying all pages.
*/
$cpost = get_queried_object();
get_header();
?>
<header class="page-header">
<div class="container"><div class="text-column">
<?php if($cpost->post_parent > 0) {?>
<div class="page-crumb"><a href="<?php echo get_permalink($cpost->post_parent);?>"><?php echo get_the_title($cpost->post_parent);?></a></div>
<?php }?>
<h1 class="page-title"><?php echo get_the_title($cpost);?></h1>
<?php if($cpost->post_excerpt) {?>
<div class="page-intro"><?php echo apply_filters('knd_the_title', $cpost->post_excerpt);?></div>
<?php } ?>
</div></div>
</header>
<div class="page-content container">
<div class="the-content text-column">
<?php echo apply_filters('the_content', apply_filters('knd_entry_the_content', $cpost->post_content));?>
</div>
</div>
<?php get_footer();