OwlCyberSecurity - MANAGER
Edit File: single-case_studies.php
<?php $post = $wp_query->post; $post_id = $post->ID; get_header(); $layout = 'full_width'; $page_content_class = 'col-md-12'; $css_classes = array(); $css_classes[] = 'page-layout-' . esc_attr( $layout ); // Portfolio Post Layout (Fullwidth or Side) $post_layout = 'side'; if( ( $value = get_post_meta( get_the_ID(), "case_studies_layout", true ) ) != '' || ( $value = insignia_option( 'case_studies_layout' ) ) == 'fullwidth' ) { $post_layout = $value; } if( get_post_meta( get_the_ID(), "case_studies_layout", true ) == 'default' ){ $post_layout = insignia_option('case_studies_layout'); } $css_classes[] = 'portfolio-layout-' . $post_layout; ?> <div class="section-page portfolio-post <?php echo implode( ' ', $css_classes ); ?>"<?php insignia_page_content_styles(); ?>> <div class="container"> <div class="row"> <div id="page-content" class="page-content portfolio-holder clearfix"> <div class="portfolio-content"> <?php if ( '' !== get_post()->post_content ){ ?> <div class="portfolio-content-inner last-paragraph-no-margin"> <?php if ( have_posts() ) : while (have_posts()) : the_post(); the_content(); // Use the post content endwhile; endif; ?> </div> <?php } ?> </div> </div> <?php // Social Sharing if ( function_exists( 'insignia_socials_sharing' ) && insignia_option_true( 'portfolio_sharing' ) == true ) { insignia_socials_sharing(); } ?> </div> </div> <?php // Post Nav if ( function_exists( 'insignia_portfolio_post_nav' ) && insignia_option_true( 'portfolio_navigation' ) == true ) { insignia_portfolio_post_nav(); } ?> <?php get_footer(); ?>