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/public_html/wp-content/themes/businessexpo/page-templates/pagebuilder.php
<?php
/**
 *
 * Template Name: Builder Page
 *
 * This is the template that displays all pages by default.
 * Please note that this is the WordPress construct of pages
 * and that other 'pages' on your WordPress site may use a
 * different template.
 *
 * @link    https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package BusinessExpo
 */

	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 theme-builder
	<?php if ( 'Architect Designs' == $businessexpo_activate_theme ){ ?> theme-dark <?php } else { ?> theme-light <?php } ?>">
		<div class="container">
			<?php
			while ( have_posts() ) :
				the_post();
				the_content();
			endwhile; // End of the loop.
			?>
		</div>
	</section><!-- #page-builder -->

<?php
get_footer();