HEX
Server: nginx/1.24.0
System: Linux prod-btpayments-io 6.14.0-1018-aws #18~24.04.1-Ubuntu SMP Mon Nov 24 19:46:27 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.3.19
Disabled: NONE
Upload Files
File: /var/www/BtPayments/BtPayments-home/wp-content/themes/kava/archive.php
<?php
/**
 * The template for displaying archive pages
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Kava
 */

get_header();

	do_action( 'kava-theme/site/site-content-before', 'archive' ); ?>

	<div <?php kava_content_class() ?>>
		<?php
		$show_archive_title = kava_theme()->customizer->get_value( 'show_archive_title' );
		$show_archive_desc  = kava_theme()->customizer->get_value( 'show_archive_desc' );

		if ( filter_var( $show_archive_title, FILTER_VALIDATE_BOOLEAN ) || filter_var( $show_archive_desc, FILTER_VALIDATE_BOOLEAN ) ) : ?>
			<header class="page-header">
				<?php
					if ( filter_var( $show_archive_title, FILTER_VALIDATE_BOOLEAN ) ) {
						the_archive_title( '<h1 class="page-title">', '</h1>' );
					}

					if ( filter_var( $show_archive_desc, FILTER_VALIDATE_BOOLEAN ) ) {
						the_archive_description( '<div class="archive-description">', '</div>' );
					}
				?>
			</header><!-- .page-header -->
		<?php endif; ?>

		<div class="row">

			<?php do_action( 'kava-theme/site/primary-before', 'archive' ); ?>

			<div id="primary" <?php kava_primary_content_class(); ?>>

				<?php do_action( 'kava-theme/site/main-before', 'archive' ); ?>

				<main id="main" class="site-main"><?php
					if ( have_posts() ) :

						kava_theme()->do_location( 'archive', 'template-parts/posts-loop' );

					else :

						get_template_part( 'template-parts/content', 'none' );

					endif;
				?></main><!-- #main -->

				<?php do_action( 'kava-theme/site/main-after', 'archive' ); ?>

			</div><!-- #primary -->

			<?php do_action( 'kava-theme/site/primary-after', 'archive' ); ?>

			<?php get_sidebar(); // Loads the sidebar.php template.  ?>
		</div>
	</div>

	<?php do_action( 'kava-theme/site/site-content-after', 'archive' );

get_footer();