File: /home/l2pbkn5l6xav/public_html/wp-content/themes/lz-charity-welfare/index.php
<?php
/**
* The main template file
* @package WordPress
* @subpackage lz-charity-welfare
* @since 1.0
* @version 0.1
*/
get_header(); ?>
<div class="container">
<?php if ( is_home() && ! is_front_page() ) : ?>
<header class="page-header">
<h1 class="page-title"><?php single_post_title(); ?></h1>
</header>
<?php else : ?>
<header class="page-header">
<h2 class="page-title"><?php esc_html_e( 'Posts', 'lz-charity-welfare' ); ?></h2>
</header>
<?php endif; ?>
<div class="content-area">
<main id="main" class="site-main" role="main">
<?php
$layout_option = get_theme_mod( 'lz_charity_welfare_theme_options',__( 'Right Sidebar','lz-charity-welfare') );
if($layout_option == 'Left Sidebar'){ ?>
<div class="row">
<div id="sidebar" class="col-md-4 col-sm-4"><?php dynamic_sidebar('sidebar-1'); ?></div>
<div id="" class="content_area col-md-8 col-sm-8">
<section id="post_section">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content' );
endwhile;
else :
get_template_part( 'template-parts/post/content', 'none' );
endif;
?>
<div class="navigation">
<?php
the_posts_pagination( array(
'prev_text' => __( 'Previous page', 'lz-charity-welfare' ),
'next_text' => __( 'Next page', 'lz-charity-welfare' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'lz-charity-welfare' ) . ' </span>',
) );
?>
<div class="clearfix"></div>
</div>
</section>
</div>
<div class="clearfix"></div>
</div>
<?php }else if($layout_option == 'Right Sidebar'){ ?>
<div class="row">
<div id="" class="content_area col-md-8 col-sm-8">
<section id="post_section">
<?php
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content' );
endwhile;
else :
get_template_part( 'template-parts/post/content', 'none' );
endif;
?>
<div class="navigation">
<?php
// Previous/next page navigation.
the_posts_pagination( array(
'prev_text' => __( 'Previous page', 'lz-charity-welfare' ),
'next_text' => __( 'Next page', 'lz-charity-welfare' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'lz-charity-welfare' ) . ' </span>',
) );
?>
<div class="clearfix"></div>
</div>
</section>
</div>
<div id="sidebar" class="col-md-4 col-sm-4"><?php dynamic_sidebar('sidebar-1'); ?></div>
</div>
<?php }else if($layout_option == 'One Column'){ ?>
<div id="" class="content_area">
<section id="post_section">
<?php
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content' );
endwhile;
else :
get_template_part( 'template-parts/post/content', 'none' );
endif;
?>
<div class="navigation">
<?php
// Previous/next page navigation.
the_posts_pagination( array(
'prev_text' => __( 'Previous page', 'lz-charity-welfare' ),
'next_text' => __( 'Next page', 'lz-charity-welfare' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'lz-charity-welfare' ) . ' </span>',
) );
?>
<div class="clearfix"></div>
</div>
</section>
</div>
<?php }else if($layout_option == 'Three Columns'){ ?>
<div class="row">
<div id="sidebar" class="col-md-3"><?php dynamic_sidebar('sidebar-1'); ?></div>
<div id="" class="content_area col-md-6 col-sm-6">
<section id="post_section">
<?php
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content' );
endwhile;
else :
get_template_part( 'template-parts/post/content', 'none' );
endif;
?>
<div class="navigation">
<?php
// Previous/next page navigation.
the_posts_pagination( array(
'prev_text' => __( 'Previous page', 'lz-charity-welfare' ),
'next_text' => __( 'Next page', 'lz-charity-welfare' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'lz-charity-welfare' ) . ' </span>',
) );
?>
<div class="clearfix"></div>
</div>
</section>
</div>
<div id="sidebar" class="col-md-3"><?php dynamic_sidebar('sidebar-2'); ?></div>
</div>
<?php }else if($layout_option == 'Four Columns'){ ?>
<div class="row">
<div id="sidebar" class="col-md-3"><?php dynamic_sidebar('sidebar-1'); ?></div>
<div id="" class="content_area col-md-3">
<section id="post_section">
<?php
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content' );
endwhile;
else :
get_template_part( 'template-parts/post/content', 'none' );
endif;
?>
<div class="navigation">
<?php
// Previous/next page navigation.
the_posts_pagination( array(
'prev_text' => __( 'Previous page', 'lz-charity-welfare' ),
'next_text' => __( 'Next page', 'lz-charity-welfare' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'lz-charity-welfare' ) . ' </span>',
) );
?>
<div class="clearfix"></div>
</div>
</section>
</div>
<div id="sidebar" class="col-md-3"><?php dynamic_sidebar('sidebar-2'); ?></div>
<div id="sidebar" class="col-md-3"><?php dynamic_sidebar('sidebar-3'); ?></div>
</div>
<?php } else if($layout_option == 'Grid Layout'){ ?>
<div id="" class="content_area">
<section id="post_section">
<div class="row">
<?php
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/grid-layout' );
endwhile;
else :
get_template_part( 'template-parts/post/grid-layout', 'none' );
endif;
?>
<div class="navigation">
<?php
// Previous/next page navigation.
the_posts_pagination( array(
'prev_text' => __( 'Previous page', 'lz-charity-welfare' ),
'next_text' => __( 'Next page', 'lz-charity-welfare' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'lz-charity-welfare' ) . ' </span>',
) );
?>
<div class="clearfix"></div>
</div>
</div>
</section>
</div>
<?php } else { ?>
<div class="row">
<div id="" class="content_area col-md-8 col-sm-8">
<section id="post_section">
<?php
if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/post/content' );
endwhile;
else :
get_template_part( 'template-parts/post/content', 'none' );
endif;
?>
<div class="navigation">
<?php
// Previous/next page navigation.
the_posts_pagination( array(
'prev_text' => __( 'Previous page', 'lz-charity-welfare' ),
'next_text' => __( 'Next page', 'lz-charity-welfare' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'lz-charity-welfare' ) . ' </span>',
) );
?>
<div class="clearfix"></div>
</div>
</section>
</div>
<div id="sidebar" class="col-md-4 col-sm-4"><?php dynamic_sidebar('sidebar-1'); ?>
</div>
</div>
<?php } ?>
</main>
</div>
</div>
<?php get_footer();