-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
34 lines (33 loc) · 1.04 KB
/
page.php
File metadata and controls
34 lines (33 loc) · 1.04 KB
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
<?php
get_header();
include(get_template_directory() . '/layout-head.php');
$is_comic = false;
while (have_posts()) : the_post();
?>
<div <?php post_class(); ?>>
<?php comicpress_display_post_thumbnail($is_comic); ?>
<div class="post-head"></div>
<div class="post-content">
<div class="post-info">
<div class="post-text">
<?php comicpress_display_post_title($is_comic); ?>
</div>
</div>
<div class="clear"></div>
<div class="entry">
<?php comicpress_display_the_content($is_comic); ?>
<div class="clear"></div>
</div>
<?php wp_link_pages(array('before' => '<div class="linkpages"><span class="linkpages-pagetext">'.__('Pages:','comicpress').'</span> ', 'after' => '</div>', 'next_or_number' => 'number')); ?>
<?php edit_post_link(__('Edit this page.','comicpress'), '', ''); ?>
</div>
<div class="post-foot"></div>
</div>
<?php
if ('open' == $post->comment_status) {
comments_template('', true);
}
endwhile;
include(get_template_directory() . '/layout-foot.php');
get_footer();
?>