File: //var/www/html/bwcdev/wp-content/themes/salient/includes/partials/single-portfolio/content-area.php
<?php
/**
* Fallback project content area Template
*
* This file is here only in case a legacy child theme calls it.
* If your child theme is calling this from salient-child/single-portfolio.php,
* please update your child theme to contain the actual file
* (includes/partials/single-portfolio/content-area.php). The portfolio post
* type is now contained in a plugin (Salient Portfolio) and not apart of the theme.
*
* @package Salient WordPress Theme
* @version 10.5
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
global $post;
$fwp = get_post_meta( $post->ID, '_nectar_portfolio_item_layout', true );
if ( empty( $fwp ) ) {
$fwp = 'false';
}
$options = get_nectar_theme_options();
$enable_gallery_slider = get_post_meta( get_the_ID(), '_nectar_gallery_slider', true );
$hidden_featured_media = get_post_meta( $post->ID, '_nectar_hide_featured', true );
$hidden_project_title = get_post_meta( $post->ID, '_nectar_hide_title', true );
$portfolio_remove_comments = ( ! empty( $options['portfolio_remove_comments'] ) ) ? $options['portfolio_remove_comments'] : '0';
$theme_skin = ( ! empty( $options['theme-skin'] ) && $options['theme-skin'] == 'ascend' ) ? 'ascend' : 'default';
?>
<div class="post-area col <?php if ( $fwp !== 'enabled' ) { echo 'span_9'; } else { echo 'span_12'; } ?>">
<?php
if ( ! post_password_required() ) {
$video_embed = get_post_meta( $post->ID, '_nectar_video_embed', true );
$video_m4v = get_post_meta( $post->ID, '_nectar_video_m4v', true );
$video_ogv = get_post_meta( $post->ID, '_nectar_video_ogv', true );
$video_poster = get_post_meta( $post->ID, '_nectar_video_poster', true );
// Video
if ( ! empty( $video_embed ) && $hidden_featured_media !== 'on' || ! empty( $video_m4v ) && $hidden_featured_media !== 'on' ) {
// video embed
if ( ! empty( $video_embed ) ) {
echo '<div class="video">' . do_shortcode( $video_embed ) . '</div>';
}
elseif ( floatval( get_bloginfo( 'version' ) ) >= '3.6' ) {
if ( ! empty( $video_m4v ) || ! empty( $video_ogv ) ) {
$video_output = '[video ';
if ( ! empty( $video_m4v ) ) {
$video_output .= 'mp4="' . esc_url( $video_m4v ) . '" '; }
if ( ! empty( $video_ogv ) ) {
$video_output .= 'ogv="' . esc_url( $video_ogv ) . '"'; }
$video_output .= ' poster="' . esc_url( $video_poster ) . '" height="720" width="1280"]';
echo '<div class="video">' . do_shortcode( $video_output ) . '</div>'; // WPCS: XSS ok.
}
}
}
// Regular Featured Img
elseif ( defined( 'NECTAR_THEME_NAME' ) && $hidden_featured_media !== 'on' ) {
if ( has_post_thumbnail() ) {
echo get_the_post_thumbnail( $post->ID, 'full', array( 'title' => '' ) );
}
}
}
?>
<?php
// extra content
if ( ! post_password_required() ) {
$portfolio_extra_content = get_post_meta( $post->ID, '_nectar_portfolio_extra_content', true );
if ( ! empty( $portfolio_extra_content ) ) {
echo '<div id="portfolio-extra">';
$extra_content = shortcode_empty_paragraph_fix( apply_filters( 'the_content', $portfolio_extra_content ) );
echo do_shortcode( $extra_content );
echo '</div>';
}
} elseif ( $fwp === 'enabled' ) {
the_content();
}
if ( comments_open() && $theme_skin !== 'ascend' && $portfolio_remove_comments != '1' ) {
?>
<div class="comments-section">
<?php comments_template(); ?>
</div>
<?php } ?>
</div><!--/post-area-->