HEX
Server: LiteSpeed
System: Linux premium321.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
User: paksjuts (1314)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/paksjuts/public_html/wp-content/themes/tracks/index.php
<?php get_header(); ?>

<?php get_template_part( 'content/archive-header' ); ?>

	<div id="loop-container" class="loop-container">
		<?php
		if ( have_posts() ) :
			while ( have_posts() ) :
				the_post();
				ct_tracks_get_content_template();
			endwhile;
		endif;
		?>
	</div>

<?php

// include loop pagination except for on bbPress Forum root
if ( function_exists( 'is_bbpress' ) ) {
	if ( ! ( is_bbpress() && is_archive() ) ) {
		the_posts_pagination( array(
			'prev_text' => esc_html__( 'Previous', 'tracks' ),
			'next_text' => esc_html__( 'Next', 'tracks' )
		) );
	}
} else {
	the_posts_pagination( array(
		'prev_text' => esc_html__( 'Previous', 'tracks' ),
		'next_text' => esc_html__( 'Next', 'tracks' )
	) );
}

get_footer();