Server IP : 192.64.118.117 / Your IP : 18.220.97.0 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 archive pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package Zigcy Lite */ get_header(); $zigcy_lite_archive_post_layout_sidebars = get_theme_mod('zigcy_lite_archive_post_layout_sidebars','right-sidebar-enabled'); ?> <div class="container"> <div class="sml-archive-wrapper <?php echo esc_attr($zigcy_lite_archive_post_layout_sidebars); ?>"> <div id="primary" class="content-area"> <main id="main" class="site-main"> <?php if ( have_posts() ) : ?> <?php /* Start the Loop */ while ( have_posts() ) : the_post(); /* * Include the Post-Type-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Type name) and that will be used instead. */ get_template_part( 'template-parts/content', 'archive'); endwhile; the_posts_navigation(); else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </main><!-- #main --> </div><!-- #primary --> <?php // sidebar options $archive_sidebar_explode = (explode("-",$zigcy_lite_archive_post_layout_sidebars)); $archive_sidebar = $archive_sidebar_explode[0]; if( $archive_sidebar == 'both'){ get_sidebar('left'); get_sidebar('right'); }elseif( $archive_sidebar != 'no'){ get_sidebar( $archive_sidebar ); } ?> </div> <?php get_footer();