HEX
Server: Apache
System: Linux webd003.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/slyfwmm/pianob/wp-content/themes/zk-monaco/single-portfolio.php
<?php
/**
 * The Template for displaying all single posts
 *
 * @package ZookaStudio
 * @subpackage Monaco
 * @since 1.0.0
 */
	global $smof_data;
	$portfolio_meta = cms_post_meta_data();
	$portfolio_layout = $portfolio_meta->_cms_single_layout;
	if($portfolio_layout != '') $smof_data['single_portfolio_layout'] = $portfolio_layout;

	get_header(); 
?>


<div id="primary" class="primary single-portfolio <?php echo esc_attr($smof_data['single_portfolio_layout']);?>">
    <div id="content" role="main">
        <?php while ( have_posts() ) : the_post(); ?>
            <?php get_template_part( 'single-templates/portfolio/detail', $smof_data['single_portfolio_layout'] ); ?>
            <?php cms_portfolio_nav(); ?>
            <?php  
                if(class_exists('CmssuperheroesCore') && $smof_data['single_portfolio_related']){
                    get_template_part('single-templates/portfolio/content-related');
                }
            ?>
        <?php endwhile; // end of the loop. ?>
    </div><!-- #content -->
</div><!-- #primary -->

<?php get_footer(); ?>