-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcontent-page.php
More file actions
49 lines (32 loc) · 765 Bytes
/
content-page.php
File metadata and controls
49 lines (32 loc) · 765 Bytes
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
<?php
comicpress_display_post_thumbnail();
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post-content">
<div class="post-info">
<?php
comicpress_display_post_title();
?>
<div class="post-text">
<?php
wp_link_pages( array(
'before' => '<div class="linkpages"><span class="linkpages-pagetext">Pages:</span> ',
'after' => '</div>',
'next_or_number' => 'number',
) );
?>
</div>
<div class="clear"></div>
</div>
<div class="entry">
<?php
comicpress_display_the_content();
?>
<div class="clear"></div>
</div>
<div class="clear"></div>
<?php
edit_post_link( __( 'Edit this page.', 'comicpress' ), '', '' );
?>
</div>
</article>