-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
35 lines (29 loc) · 1.14 KB
/
Copy pathpage.php
File metadata and controls
35 lines (29 loc) · 1.14 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
35
<?php get_header();?>
<?php get_template_part("include/page","banner"); ?>
<div class="container">
<div class="page-content single-centent">
<div class="row">
<?php while(have_posts()){ the_post(); ?>
<div class="col-md-8">
<div class="content-bx">
<img src="<?php the_post_thumbnail_url(); ?>" alt="<?php the_title(); ?>" />
<div class="meta">
<span><i class="fa-clock"></i><?php echo get_the_date(); ?></span>
<span><i class="fa-comment"></i><?php echo get_comments_number(); ?>نظر</span>
</div>
<h1> <?php the_title(); ?></h1>
<hr>
<div class="p-text">
<?php the_content(); ?>
</div>
<div class="comment_box">
<?php comments_template(); ?>
</div>
</div>
</div>
<?php } ?>
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php get_footer(); ?>