File: /www/wwwroot/www.cytocare.cn/wp-content/themes/peakshops/page-default.php
<?php
	/*
	Template Name: Page Builder
	*/
	$thb_id        = get_the_ID();
	$display_title = get_post_meta( $thb_id, 'display_title', true );
	$vc            = class_exists( 'WPBakeryVisualComposerAbstract' );
?>
<?php get_header(); ?>
<?php
if ( have_posts() ) :
	while ( have_posts() ) :
			the_post();
		if ( post_password_required() ) {
			get_template_part( 'inc/templates/misc/password-protected' );
		} elseif ( $vc && ! thb_is_woocommerce() ) {
			?>
		<div <?php post_class(); ?>>
			<?php if ( 'off' !== $display_title ) { ?>
				<?php get_template_part( 'inc/templates/misc/page-title' ); ?>
			<?php } ?>
			<?php the_content(); ?>
		</div>
	<?php } elseif ( thb_is_woocommerce() ) { ?>
		<div <?php post_class(); ?>>
			<div class="row">
				<div class="small-12 columns">
					<div class="no-vc">
						<?php the_content(); ?>
					</div>
				</div>
			</div>
		</div>
	<?php } ?>
		<?php
	endwhile;
endif;
?>
<?php
get_footer();