-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
38 lines (34 loc) · 1.41 KB
/
Copy pathsingle.php
File metadata and controls
38 lines (34 loc) · 1.41 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
36
37
38
<?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>
<span><i class="fa fa-archive"></i><?php the_category(" , "); ?></span>
</div>
<h1> <?php the_title(); ?></h1>
<hr>
<div class="p-text">
<?php the_content(); ?>
</div>
<div class="post-tags">
<?php the_tags("#","",""); ?>
</div>
<?php get_template_part("include/releated","posts") ?>
<div class="comment_box">
<?php comments_template(); ?>
</div>
</div>
</div>
<?php } ?>
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php get_footer(); ?>