File: /home/dothetest.co.uk/public_html/wp-content/themes/matthew-magazine-blog/home.php
<?php
/**
* The main template file
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Matthew_Magazine_Blog
*/
get_header();
?>
<main class="site-main home mt-4" id="content">
<?php if ( is_home() && ! is_front_page() ) : ?>
<?php do_action('mmlb_archive_header'); ?>
<?php endif; ?>
<section class="area-category">
<div class="container">
<div class="">
<div class="row">
<?php
$args = mmlb_archive_layout();
$col_one = $args['col_one'];
$col_two = $args['col_two'];
$layout = $args['layout'];
$grid = str_contains($layout, 'masonry');
?>
<div class="<?php echo esc_attr($col_one); ?>">
<div class="<?php echo esc_attr($grid ? 'grid':'row') ?>">
<div class="grid__col-sizer"></div>
<?php
if ( have_posts() ) :
?>
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
/*
* Include the Post-Type-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Type name) and that will be used instead.
*/
get_template_part( 'template-parts/content', $layout );
endwhile;
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div>
<?php
do_action( 'matthew_magazine_blog_pagination_scroll_load_more' );
do_action( 'matthew_magazine_blog_posts_pagination' );
?>
</div>
<div class="<?php echo esc_attr($col_two); ?>">
<?php get_sidebar();?>
</div>
</div>
</div>
</div>
</section>
</main><!-- #main -->
<?php
get_footer();