File: /home/elrashedytravel/public_html/wp-content/themes/coffee-tea/page.php
<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Coffee Tea
*/
get_header(); ?>
<section class="blog-area inarea-blog-2-column-area three">
<div class="container">
<div class="row">
<?php
$coffee_tea_paged_sidebar_setting = get_theme_mod('coffee_tea_paged_sidebar_setting','1');
$coffee_tea_sidebar_position = get_theme_mod('coffee_tea_sidebar_position', 'right');
$coffee_tea_content_class = ($coffee_tea_paged_sidebar_setting == '') ? 'col-lg-12' : 'col-lg-8';
// Set classes for left or right sidebar
$coffee_tea_content_order_class = ($coffee_tea_sidebar_position == 'left') ? 'order-lg-2' : '';
$coffee_tea_sidebar_order_class = ($coffee_tea_sidebar_position == 'left') ? 'order-lg-1' : '';
?>
<?php
if ( class_exists( 'woocommerce' ) ) {
if( is_account_page() || is_cart() || is_checkout() ) {
echo '<div class="' . esc_attr($coffee_tea_content_class . ' ' . $coffee_tea_content_order_class) . '">';
}
else{
echo '<div class="' . esc_attr($coffee_tea_content_class . ' ' . $coffee_tea_content_order_class) . '">';
}
}
else {
echo '<div class="' . esc_attr($coffee_tea_content_class . ' ' . $coffee_tea_content_order_class) . '">';
}
?>
<?php if( have_posts()) : the_post(); ?>
<article class="post-items post-single wow fadeInUp">
<?php if ( has_post_thumbnail() ) : ?>
<div class="post-thumb mb-3"><?php the_post_thumbnail(); ?></div>
<?php endif; ?>
<div class="post-content">
<?php the_content();
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'coffee-tea' ),
'after' => '</div>',
) ); ?>
</div>
</article>
<?php
endif;
if( $post->comment_status == 'open' ) {
comments_template( '', true ); // show comments
}
?>
</div>
<?php if( $coffee_tea_paged_sidebar_setting != '') { ?>
<?php get_sidebar(); ?>
<?php } ?>
</div>
</div>
</section>
<?php get_footer(); ?>