HEX
Server: Apache/2.2.34 (Unix) mod_fastcgi/mod_fastcgi-SNAP-0910052141
System: Linux Kou-Etsu-Dou 4.4.59+ #25556 SMP PREEMPT Thu Mar 4 18:03:46 CST 2021 x86_64
User: hosam (1026)
PHP: 7.2.29
Disabled: NONE
Upload Files
File: /volume1/web1/wp-content/themes/chaplin/index.php
<?php get_header(); ?>

<main id="site-content" role="main">

	<?php

	$archive_title 		= get_the_archive_title();
	$archive_subtitle 	= get_the_archive_description( '<div>', '</div>' );

	// Check if we should show the archive header on the blog page
	$show_home_header = get_theme_mod( 'chaplin_show_archive_header_on_home', false );
	
	if ( ( ! is_home() || is_home() && $show_home_header ) && ( $archive_title || $archive_subtitle ) ) : ?>
		
		<header class="archive-header section-inner">

			<?php 
			
			/*
			 * @hooked chaplin_maybe_output_breadcrumbs - 10
			 */
			do_action( 'chaplin_archive_header_start' );
			
			if ( $archive_title ) : 
				?>
				<h1 class="archive-title"><?php echo wp_kses_post( $archive_title ); ?></h1>
				<?php 
			endif;
			
			if ( $archive_subtitle ) : 
				?>
				<div class="archive-subtitle section-inner thin max-percentage intro-text"><?php echo wp_kses_post( wpautop( $archive_subtitle ) ); ?></div>
				<?php 
			endif;
			
			do_action( 'chaplin_archive_header_end' ); 
			
			?>
			
		</header><!-- .archive-header -->

	<?php endif; ?>

	<div class="posts section-inner">

		<?php if ( have_posts() ) : 

			/*
			 * @hooked chaplin_output_previous_posts_link - 10
			 */
			do_action( 'chaplin_posts_start' );

			$post_grid_column_classes = chaplin_get_post_grid_column_classes();
		
			?>

			<div class="posts-grid grid load-more-target <?php echo $post_grid_column_classes; ?>">
			
				<?php 

				// Calculate the current offset
				$iteration = intval( $wp_query->get( 'posts_per_page' ) ) * intval( $wp_query->get( 'paged' ) );

				while ( have_posts() ) : the_post(); 

					$iteration++;

					/**
					 * Fires before output of a grid item in the posts loop.
					 * 
					 * Allows output of custom elements within the posts loop, like banners.
					 * To add markup spanning the entire width of the posts grid, wrap it in the following element:
					 * <div class="grid-item col-1">[Your content]</div>
					 * @param int   $post_id 	Post ID.
					 * @param int   $iteration 	The current iteration of the loop.
					 */
					do_action( 'chaplin_posts_loop_before_grid_item', $post->ID, $iteration );
					?>

					<div class="grid-item">
						<?php get_template_part( 'parts/preview', get_post_type() ); ?>
					</div><!-- .grid-item -->

					<?php 

					/**
					 * Fires after output of a grid item in the posts loop.
					 */
					do_action( 'chaplin_posts_loop_after_grid_item', $post->ID, $iteration );

				endwhile;
				?>

			</div><!-- .posts-grid -->

			<?php do_action( 'chaplin_posts_end' ); ?>

		<?php elseif ( is_search() ) : ?>

			<div class="no-search-results-form">

				<?php get_search_form(); ?>

			</div><!-- .no-search-results -->

		<?php endif; ?>
	
	</div><!-- .posts -->

	<?php get_template_part( 'pagination' ); ?>

</main><!-- #site-content -->

<?php get_footer(); ?>