-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory.php
44 lines (34 loc) · 1.3 KB
/
category.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
<?php get_header();?>
<?php get_template_part("/page-templates/common/hero-blog")?>
<section <?php post_class();?> class="ftco-section bg-light">
<div class="container">
<div class="row">
<div class="col-md-10 offset-md-1">
<div class="row mb-5">
<div class="col-12 text-center" data-aos="fade">
<h2 class="section-title pt-5"><span class="text-primary"><?php _e('Post Under: ','educulture')?></span><?php single_cat_title();?></h2>
</div>
</div>
<?php
while(have_posts()):
the_post();
?>
<div class="">
<div class="blog-entry">
<div class="text bg-white">
<h3 class="bg-light text-dark text-center"><a href="<?php the_permalink();?>"><?php the_title();?></a></h3>
</div>
</div>
</div>
<?php endwhile;?>
</div>
<div class="col-md-8 offset-md-2 text-center my-5">
<div class="block-27 text-center">
<?php the_posts_pagination();?>
</div>
</div>
</div>
</div>
</section>
<?php get_footer();?>
<?php wp_footer();?>