File: /home/elrashedytravel/www/wp-content/themes/category_template_1767952443/category.php
<?php
/**
* The category template file
*
* @package Graceful Halo Blog
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
get_header();
// Left Sidebar
get_template_part( 'template-parts/sidebars/sidebar', 'left' );
// Content Columns Wrapper
?>
<h1 class="graceful-halo-category-title">
<?php echo esc_html( single_cat_title( '', false ) ); ?>
</h1>
<div class="graceful-halo-category-description">
<?php echo wp_kses_post( category_description() ); ?>
</div>
<?php
get_template_part( 'template-parts/columns/column', 'one' );
// Right Sidebar
get_template_part( 'template-parts/sidebars/sidebar', 'right' );
get_footer();