-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-full.php
54 lines (31 loc) · 1.01 KB
/
page-full.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
<?php
/*
Template Name: Full-Width
*/
?>
<?php get_header(); ?>
<div id="container" class="full-width">
<div class="clear"></div>
<div id="content">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<section class="post">
<h2 class="title"><?php the_title(); ?></h2>
<div class="clear"></div>
<?php if ( get_option('acer_thumb_page') == true ) { ?>
<?php if ( has_post_thumbnail() ) { ?>
<section class="thumb"><?php the_post_thumbnail( get_option('acer_thumb_size_page') ); ?></section>
<?php } } ?>
<section class="entry">
<?php the_content(); ?>
</section>
</section>
<div class="clear"></div>
<div id="comments">
<?php comments_template('',true); ?>
</div><!-- Comments ends -->
<?php endwhile; endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<div class="clear"></div>
<?php get_footer(); ?>