| Server IP : 144.76.79.100 / Your IP : 216.73.216.103 [ Web Server : Apache System : Linux ch05.wehostwebserver.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64 User : razzlestore ( 1092) PHP Version : 8.2.29 Disable Function : NONE Domains : 343 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/cwd/wp-content/themes/zugan/ |
Upload File : |
<?php
/**
* @author RadiusTheme
* @since 1.0
* @version 1.0
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
// Layout class
if ( ZuganTheme::$layout == 'full-width' ) {
$zugan_layout_class = 'col-lg-12 col-12';
}
else{
$zugan_layout_class = ZuganTheme_Helper::has_active_widget();
}
?>
<?php get_header(); ?>
<div id="primary" class="content-area">
<div class="container">
<div class="row">
<?php
if ( ZuganTheme::$layout == 'left-sidebar' ) {
get_sidebar();
}
?>
<div class="<?php echo esc_attr( $zugan_layout_class );?>">
<main id="main" class="site-main">
<div class="rt-masonry-grid rt-search-post">
<?php if ( have_posts() ) :?>
<?php while ( have_posts() ) : the_post();
$excerpt_length = ZuganTheme::$options['search_excerpt_length'];
get_template_part( 'template-parts/content-1', 'search' );
?>
<?php endwhile; ?>
<?php else:?>
<?php get_template_part( 'template-parts/content', 'none' );?>
<?php endif;?>
</div>
<?php ZuganTheme_Helper::pagination();?>
</main>
</div>
<?php
if ( ZuganTheme::$layout == 'right-sidebar' ) {
get_sidebar();
}
?>
</div>
</div>
</div>
<?php get_footer(); ?>