| 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
*/
//namespace radiustheme\Zugan;
?>
<?php get_header(); ?>
<div id="primary" class="content-area">
<?php
if ( have_posts() ) {
if ( ZuganTheme::$options['portfolio_style'] == 'style1' ) { ?>
<main id="main" class="site-main">
<?php while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-single-portfolio-1', get_post_format() );
endwhile; ?>
</main>
<?php } else if ( ZuganTheme::$options['portfolio_style'] == 'style2' || ZuganTheme::$options['portfolio_style'] == 'style3' || ZuganTheme::$options['portfolio_style'] == 'style4' || ZuganTheme::$options['portfolio_style'] == 'style5' ) { ?>
<div class="container">
<div class="row">
<div class="col-sm-12 col-12">
<main id="main" class="site-main">
<?php
if ( ZuganTheme::$options['portfolio_style'] == 'style2' ) {
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-single-portfolio-2', get_post_format() );
endwhile;
} else if ( ZuganTheme::$options['portfolio_style'] == 'style3' ) {
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-single-portfolio-3', get_post_format() );
endwhile;
} else if ( ZuganTheme::$options['portfolio_style'] == 'style4' ) {
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-single-portfolio-4', get_post_format() );
endwhile;
} else if ( ZuganTheme::$options['portfolio_style'] == 'style5' ) {
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-single-portfolio-5', get_post_format() );
endwhile;
}
?>
</main>
</div>
</div>
</div>
<?php } } else { ?>
<div class="container">
<div class="row">
<div class="col-sm-12 col-12">
<main id="main" class="site-main">
<?php get_template_part( 'template-parts/content', 'none' );?>
</main>
</div>
</div>
</div>
<?php } ?>
</div>
<?php get_footer(); ?>