HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpprotonperinggit/wp-content/themes/voiture/single.php
<?php
get_header();
$sidebar_configs = voiture_get_blog_layout_configs();
$checksidebar = voiture_get_config('blog_single_layout');
?>

	<section id="main-container" class="main-content-detail <?php echo apply_filters( 'voiture_blog_content_class', 'container' ); ?> inner <?php echo trim($checksidebar); ?>">
		<?php voiture_before_content( $sidebar_configs ); ?>
		<div class="row">

			<?php voiture_display_sidebar_left( $sidebar_configs ); ?>

			<div id="main-content" class="col-xs-12 <?php echo esc_attr($sidebar_configs['main']['class']); ?> ">
				<div id="primary" class="content-area">
					<div id="content" class="site-content detail-post" role="main">
						<?php
							// Start the Loop.
							while ( have_posts() ) : the_post();

								/*
								 * Include the post format-specific template for the content. If you want to
								 * use this in a child theme, then include a file called called content-___.php
								 * (where ___ is the post format) and that will be used instead.
								 */
								get_template_part( 'template-posts/single/header-info' );?>
								<div class="inner-content-bottom container">
									<?php get_template_part( 'template-posts/single/inner' );
									
									//get_template_part( 'template-parts/author-bio' );
					                // If comments are open or we have at least one comment, load up the comment template.
									if ( comments_open() || get_comments_number() ) :
										comments_template();
									endif;
								echo '</div>';
								// End the loop.
						    	endwhile;
						?>
					</div><!-- #content -->
				</div><!-- #primary -->
			</div>	
			
			<?php voiture_display_sidebar_right( $sidebar_configs ); ?>
			
		</div>	
	</section>

	<?php if ( voiture_get_config('show_blog_related', false) ): ?>
		<?php get_template_part( 'template-parts/posts-related' ); ?>
	<?php endif; ?>
<?php get_footer(); ?>