HEX
Server: LiteSpeed
System: Linux s882.use1.mysecurecloudhost.com 4.18.0-553.27.1.lve.el8.x86_64 #1 SMP Fri Nov 8 15:09:45 UTC 2024 x86_64
User: airservicecom (4307)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/airservicecom/public_html/wp-content/themes/air-service/single.php
<?php

if ( !defined('ABSPATH') ){ die(); }
	
global $avia_config;

get_header();

do_action( 'ava_after_main_title' );

if( have_posts() ) :
	while( have_posts() ) : the_post();
	$post_id = get_the_ID();
	
	// join these in a single section if design indicates so
?>

<div class="single-hero-section avia-section alternate_color avia-section-huge avia-no-border-styling avia-builder-el-0 el_before_av_section avia-builder-el-first container_wrap fullsize">
	<div class="container">
		<div class="content">
			<?php echo enfold_child_single_title( $post_id ); ?>
		</div>
	</div>
</div>

<div class="single-content-section avia-section main_color avia-section-default avia-no-border-styling container_wrap fullsize">
	<div class="container">
		<div class="content">
			<div class="entry-content-wrapper">
				<?php the_content(); ?>
			</div>
		</div>
	</div>
</div>

<div class="related-posts-section avia-section main_color avia-section-default avia-no-border-styling container_wrap fullsize">
	<div class="container">
		<div class="content">
			<div class="entry-content-wrapper">
				<?php echo do_shortcode('[ep_template_part link="440" do_shortcode="yes"]'); ?>
			</div>
		</div>
	</div>
</div>

<?php

endwhile;
endif;

get_footer();

?>