HEX
Server: Apache
System: Linux r5.a1center.net 4.18.0-513.5.1.lve.el8.x86_64 #1 SMP Tue Nov 21 10:14:49 UTC 2023 x86_64
User: redpsiju (1623)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /home/redpsiju/files/wp-content/themes/vastart/category.php
<?php
/**
 * The template for displaying category pages
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package Vastart
 * @since 1.0
 * @version 1.0
 */

get_header(); ?>

<div class="container">
	<div class="row">
		<div <?php vastart_content_class(); ?>>
			<div id="category-post">
				<?php if ( have_posts() ) : ?>
					<header class="archive-page-header">
						<?php
							the_archive_title(
								wp_kses(
									'<h3 class="archive-title">',
									array(
										'h3' => array(
											'class' => array(),
										),
									)
								),
								wp_kses(
									'</h3>',
									array(
										'h3' => array(
											'class' => array(),
										),
									)
								)
							);
						?>
					</header><!-- .page-header -->
					<div class="vastart-grid flip-effect" id="vastart-grid">
					<div class="grid-sizer"></div>
					<?php

					while ( have_posts() ) :
						the_post();
						get_template_part( 'template-parts/entry/content', get_post_format() );
					endwhile;
					?>
					</div>
				<?php endif; ?>
			</div><!-- #category-post -->
		</div>
		<?php get_sidebar(); ?>
	</div>
</div><!-- .container -->

<?php get_footer(); ?>