HEX
Server: LiteSpeed
System: Linux premium12.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User: desetmhw (842)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/desetmhw/estraveltourim.site/wp-content/themes/travel-joy/archive.php
<?php
/**
 * The template for displaying archive pages
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package travel_joy
 */

get_header();

do_action( 'travel_joy_archives_header' );
?>

<!-- middle-section -->
<div class="middle-section">
	<div class="section-wrapper" id="main-content">
		<div class="section__gallery">
			<section class="grid-box">
				<ul>
					<!-- left -->
					<?php do_action( 'travel_joy_sidebar_left' ); ?>

					<!-- middle -->
					<li class="middle">
						<figure>
							<?php
							if ( have_posts() ) {
								while ( have_posts() ) {
									the_post();
									get_template_part( 'template-parts/content', '' );
								}
								the_posts_pagination();
							} else {
								get_template_part( 'template-parts/content', 'none' );
							}
							?>
						</figure>
					</li>

					<!-- right -->
					<?php do_action( 'travel_joy_sidebar_right' ); ?>
				</ul>
			</section>

		</div>
	</div>
</div>
<!-- middle-section -->

<?php

get_footer();