Server IP : 192.64.118.117 / Your IP : 3.145.83.240 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/thecgapy/mcprintingandpromotions.com/wp-content/themes/zigcy-lite/ |
Upload File : |
<?php /** * The template for displaying all single posts * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post * * @package Zigcy Lite */ get_header(); $single_sidebars = get_theme_mod('sml_single_post_layout_sidebars','right-sidebar-enabled'); ?> <div class="container"> <div class="sml-single-post-wrapper <?php echo esc_attr($single_sidebars); ?>"> <div id="primary" class="content-area"> <main id="main" class="site-main"> <?php while ( have_posts() ) : the_post(); get_template_part( 'template-parts/content', 'single' ); //the_post_navigation(); // If comments are open or we have at least one comment, load up the comment template. if ( comments_open() || get_comments_number() ) : comments_template(); endif; endwhile; // End of the loop. ?> </main><!-- #main --> </div><!-- #primary --> <?php // sidebar options $page_sidebar_explode = (explode("-",$single_sidebars)); $page_sidebar = $page_sidebar_explode[0]; if( $page_sidebar == 'both'){ get_sidebar('left'); get_sidebar('right'); }elseif( $page_sidebar != 'no'){ get_sidebar( $page_sidebar ); } ?> </div> </div> <?php //get_sidebar(); get_footer();