File: //var/www/mussarq_bak2/wp-content/themes/catch-vogue/template-parts/portfolio/display-portfolio.php
<?php
/**
* The template for displaying portfolio items
*
* @package Catch Vogue
*/
?>
<?php
$enable = get_theme_mod( 'catch_vogue_portfolio_option', 'disabled' );
if ( ! catch_vogue_check_section( $enable ) ) {
// Bail if portfolio section is disabled.
return;
}
$type = 'jetpack-portfolio';
$headline = get_option( 'jetpack_portfolio_title', esc_html__( 'Portfolio', 'catch-vogue' ) );
$subheadline = get_option( 'jetpack_portfolio_content' );
$classes[] = 'section';
$classes[] = 'layout-three';
if ( ! $headline && ! $subheadline ) {
$classes[] = 'no-section-heading';
}
?>
<div id="portfolio-content-section" class="portfolio-section <?php echo esc_attr( implode( ' ', $classes ) ); ?>">
<div class="wrapper">
<?php if ( $headline || $subheadline ) : ?>
<div class="section-heading-wrapper">
<?php if ( $headline ) : ?>
<div class="section-title-wrapper">
<h2 class="section-title"><?php echo wp_kses_post( $headline ); ?></h2>
</div><!-- .section-title-wrapper -->
<?php endif; ?>
<?php if ( $subheadline ) : ?>
<div class="section-description">
<?php
$subheadline = apply_filters( 'the_content', $subheadline );
echo str_replace( ']]>', ']]>', $subheadline );
?>
</div><!-- .section-description -->
<?php endif; ?>
</div><!-- .section-heading-wrapper -->
<?php endif; ?>
<div class="section-content-wrapper <?php echo esc_attr( 'layout-three' ); ?>">
<?php
get_template_part( 'template-parts/portfolio/post-types', 'portfolio' );
?>
</div><!-- .portfolio-wrapper -->
</div><!-- .wrapper -->
</div><!-- #portfolio-content-section -->