Server IP : 192.158.238.246 / Your IP : 3.140.248.104 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/jenniferflocom/www/wp-content/themes/simple-glassy/page-templates/ |
Upload File : |
<?php /** * Template Name: Right Sidebar Layout * * This template can be used to override the default template and sidebar setup * * @package SimpleGlassy */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; get_header(); $simpleglassy_container = get_theme_mod( 'simpleglassy_container_type' ); ?> <div class="wrapper" id="page-wrapper"> <div class="<?php echo esc_attr( $simpleglassy_container ); ?>" id="content"> <div class="row"> <div class="col col-sm-12 col-md order-1 content-area" id="primary"> <main class="site-main" id="main" role="main"> <?php while ( have_posts() ) { the_post(); get_template_part( 'loop-templates/content', 'page' ); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) { comments_template(); } } ?> </main><!-- #main --> </div><!-- #primary --> <?php if ( is_active_sidebar( 'right-sidebar' ) ) : ?> <div class="col-md-5 col-lg-4 col-xl-3 widget-area order-3"><?php dynamic_sidebar( 'right-sidebar' ); ?></div> <?php endif ?> </div><!-- .row --> </div><!-- #content --> </div><!-- #page-wrapper --> <?php get_footer();