-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-coments.php
55 lines (43 loc) · 1.13 KB
/
page-coments.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
<?php
/**
* File page.php
*
*
* Template Name: coments
* @package thema WebSite3D
* @since thema WebSite3D 1.0
*/
?>
<?php get_header(); ?>
<!-- Content -->
<!--<div class="main-heading">
<h1><?php the_title(); ?></h1>
</div>-->
<!--<?php get_sidebar();?> -->
<section>
<div class="inSection">
<div class="postContent">
<?php while (have_posts()): the_post();?>
<!-- <?php if( has_post_thumbnail() ) :?>
<div class="image-section-post">
<?php the_post_thumbnail('medium', array('class' => 'miniature')); ?>
</div>
<?php endif; ?>
-->
<div class="inContent">
<?php the_content();
?>
</div> <!-- end inContent -->
<div class="inPost">
<?php
if ( comments_open() || get_comments_number() ) {
comments_template('',true);
}
?>
</div><!-- end inPost -->
<?php endwhile; ?>
</div> <!-- end postContent-->
</div>
</section>
<!-- content -->
<?php get_footer(); ?>