AlkantarClanX12

Your IP : 3.145.93.227


Current Path : /home/thanudqk/siamfreetour.com/wp-content/themes/photofocus/templates/
Upload File :
Current File : /home/thanudqk/siamfreetour.com/wp-content/themes/photofocus/templates/right-sidebar.php

<?php
/*
 * Template Name: Right Sidebar ( Content, Primary Sidebar )
 *
 * Template Post Type: post, page
 *
 * The template for displaying Page/Post with Sidebar on right
 *
 * @package PhotoFocus
 */

get_header(); ?>

    <div id="primary" class="content-area">
        <main id="main" class="site-main">
            <?php
            while ( have_posts() ) : the_post();

                $template = 'single';

                if ( is_page() ) {
                    $template = 'page';
                }

                get_template_part( 'template-parts/content/content', $template );

                get_template_part( 'template-parts/content/content', 'comment' );
            endwhile; // End of the loop.
            ?>
        </main><!-- #main -->
    </div><!-- #primary -->

<?php
get_sidebar();
get_footer();