HEX
Server: Apache
System: Linux cp4.skywebbox.com 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
User: alfouzantranspor (1054)
PHP: 8.3.23
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/alfouzantranspor/www/wp-content/themes/businessexpo/page-templates/full-width-page.php
<?php
/**
 *
 * Template Name: Full Width Page
 */

	get_header();
	$businessexpo_activate_theme_data = wp_get_theme(); // getting current theme data.
	$businessexpo_activate_theme      = $businessexpo_activate_theme_data->name;
?>
	<section id="site-content" class="section menu-overlap
	<?php if ( 'Architect Designs' == $businessexpo_activate_theme ){ ?> theme-dark <?php } else { ?> theme-light <?php } ?>">
		<div class="container">
			<div class="row">
				<div class="col-md-12 col-sm-6 col-xs-12">
					<div class="blog-page">
						<?php
						if ( have_posts() ) :
							while ( have_posts() ) :
								the_post();

								the_content();

							endwhile;
							// Reset Post Data
							wp_reset_postdata();
						endif;
						?>
					</div>
				</div>
			</div>
		</div>
	</section>
<?php
get_footer();