Viewing File: /home/maglabs/lacentraleit/wp-content/themes/mlab/single-nproject.php
<?php
defined( 'ABSPATH' ) or die();
$featured_background_types = (array) mlab_option( 'header__titlebar__backgroundFeatured' );
$current_post_type = mlab_current_post_type();
$show_featured_image = ! in_array( $current_post_type, $featured_background_types ) && has_post_thumbnail();
add_filter( 'mlab_sidebar_id', 'mlab_single_project_sidebar' );
add_filter( 'mlab_sidebar_position', 'mlab_single_project_sidebar_position' );
?>
<?php get_header() ?>
<?php if ( have_posts() ): the_post(); ?>
<article <?php post_class( 'project' ) ?>>
<div class="project-content">
<?php the_content() ?>
</div>
<?php if ( mlab_option( 'project__tags' ) == 'on' ): ?>
<div class="project-tags wrap"><?php echo get_the_term_list( get_the_ID(), 'nproject-tag' ) ?></div>
<?php endif ?>
</article>
<?php if ( mlab_option( 'project__related' ) == 'on' ): ?>
<?php get_template_part( 'tmpl/project/related' ) ?>
<?php endif ?>
<?php endif ?>
<?php get_footer() ?>
Back to Directory
File Manager