File: /home/dkhp464/public_html/wp-content/themes/DaKhoaHongPhat/search.php
<?php get_header(); ?>
<div class="container py-4">
<div class="row justify-content-center">
<div class="col-lg-8">
<?php get_template_part('blocks/breadcrum'); ?>
<h1 class="text-center pb-3 fw-bold category-title"><?php echo single_cat_title(); ?></h1>
<?php if (have_posts()) : ?>
<?php
while (have_posts()) : the_post(); ?>
<?php get_template_part('template-parts/content', 'search')?>
<?php endwhile ?>
<?php paginator_wp(); ?>
<?php else: ?>
<?php get_template_part('template-parts/content', 'none'); ?>
<?php endif; ?>
</div>
</div>
</div>
<?php get_footer(); ?>