forked from SayflyAM/Amir-Travel-Europe---Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
42 lines (33 loc) · 1.04 KB
/
single.php
File metadata and controls
42 lines (33 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* The template for displaying all single posts.
*
* @package Travel Tour
*/
get_header();
$sidebar_layout = travel_tour_get_sidebar_layout();
if( $sidebar_layout == 'no-sidebar' ) {
$content_column_class = 'col-md-12';
} else {
$content_column_class = 'col-md-9';
}
?>
<div class="my-64">
<div class="container-xl">
<div class="row">
<?php if ( $sidebar_layout == 'left-sidebar' ) : ?>
<div class="col-md-3"><?php get_sidebar(); ?></div>
<?php endif; ?>
<section class="d-flex flex-column <?php echo esc_attr( $content_column_class ); ?>">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', 'single' ); ?>
<?php endwhile; // End of the loop. ?>
<?php comments_template(); ?>
</section> <!-- /.end of section -->
<?php if( $sidebar_layout == 'right-sidebar' ) : ?>
<div class="col-md-3"><?php get_sidebar(); ?></div>
<?php endif; ?>
</div>
</div>
</div>
<?php get_footer();