forked from HUiTHEME/Mango
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcategory.php
More file actions
26 lines (26 loc) · 1007 Bytes
/
Copy pathcategory.php
File metadata and controls
26 lines (26 loc) · 1007 Bytes
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
<?php get_header(); ?>
<section class="index_area">
<div class="container">
<div class="row g-4">
<div class="col-lg-8">
<div class="catbox">
<div class="cat_head">
<?php z_taxonomy_image(NULL, array(180, 180,true)); ?>
<div class="cat_head_r">
<h2><i class="bi bi-hash me-1"></i><?php single_cat_title(); ?></h2>
<p><?php echo category_description();?></p>
</div>
</div>
<div class="post_box">
<?php while( have_posts() ): the_post(); ?>
<?php include('excerpt.php') ?>
<?php endwhile; ?>
</div>
<?php get_ds_posts_nav(); ?>
</div>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</section>
<?php get_footer(); ?>