GhostManSec
Server: Apache
System: Linux webm019.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: exhehbu (1008962)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/exhehbu/www/wp-content/themes/revolution/page.php
<?php
	$vc                 = class_exists( 'WPBakeryVisualComposerAbstract' );
	$enable_pagepadding = get_post_meta( get_the_ID(), 'enable_pagepadding', true );
	$classes[]          = 'on' === $enable_pagepadding ? 'page-padding' : false;
?>
<?php get_header(); ?>
<?php
if ( have_posts() ) :
	while ( have_posts() ) :
		the_post();
		?>
			<?php
			if ( post_password_required() ) {
				get_template_part( 'inc/templates/password-protected' );
			} elseif ( $vc && ! thb_is_woocommerce() ) {
				?>
		<div <?php post_class( $classes ); ?>>
				<?php the_content(); ?>
		</div>
		<?php } elseif ( thb_is_woocommerce() ) { ?>
		<div <?php post_class( 'page-padding' ); ?>>
			<div class="row">
				<div class="small-12 columns">
					<div class="post-content no-vc">
						<?php the_content(); ?>
					</div>
				</div>
			</div>
		</div>
	<?php } else { ?>
		<div <?php post_class( 'page-padding' ); ?>>
			<div class="row">
				<div class="small-12 columns">
					<header class="post-title page-title">
						<?php the_title( '<h1 class="entry-title" itemprop="name headline">', '</h1>' ); ?>
					</header>
					<div class="post-content no-vc">
						<?php the_content(); ?>
					</div>
				</div>
			</div>
		</div>
	<?php } ?>
		<?php if ( comments_open() || get_comments_number() ) : ?>
	<!-- Start #comments -->
			<?php comments_template( '', true ); ?>
	<!-- End #comments -->
	<?php endif; ?>
		<?php
	endwhile;
endif;
?>
<?php
get_footer();