HEX
Server: nginx/1.17.4
System: Linux hosting 4.9.0-11-amd64 #1 SMP Debian 4.9.189-3 (2019-09-02) x86_64
User: www (1001)
PHP: 7.4.19
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/pulitocucito.it/wp-content/themes/laundry/single-laundry_services.php
<?php
/**
 * Template Name: Single Service
 * Template Post Type: post
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 * @package Laundry_Services
 */
get_header();

$laundry_opt = laundry_get_options();
$theme       = isset( $laundry_opt['laundry_demo_select'] ) ? $laundry_opt['laundry_demo_select'] : 1;
if ( $theme == '2' ) {
	?>
<div class="subpage-bg-left subpage-bg__position04 lazyload" data-bg="<?php echo LAUNDRY_IMG_URL; ?>/wrapper-subpage-left04.png">
	<div class="subpage-bg-right subpage-bg__position04 lazyload" data-bg="<?php echo LAUNDRY_IMG_URL; ?>/wrapper-subpage-right04.png">
		<div class="section-inner">
			<div class="container container-fluid-lg">
				<div class="row flex-sm-row-reverse">
					<div class="col-12 col-md-7 col-lg-8">
						<div class="services-item">
						<div class="services-item__img">
						<?php the_post_thumbnail( 'laundry-service-full img-responsive' ); ?>
						</div>
						<div class="services-item__layout">
						<?php
						while ( have_posts() ) :
							the_post();
							the_content();
						endwhile; // End of the loop.
						?>
						</div>
						</div>
					</div>
					<div class="divider d-block d-block d-md-none"></div>
					<div class="col-12 col-md-5 col-lg-4 tt-aside tt-aside__indent-large">
					<?php get_sidebar( 'services' ); ?>
					</div>
				</div>
			</div>
		</div>
	</div>
</div>
	<?php
} else {
	?>
		<div class="page-content">
			<div class="container">
				<h1 class="title-underline h-sm"><?php the_title(); ?></h1>
			</div>
			<div class="two-columns service-pages">
				<div class="container">
					<div class="row">
						<div class="col-md-4 col-lg-3 service-sidebar">
							<?php get_sidebar( 'services' ); ?>
						</div>
						<div class="divider-lg visible-xs"></div>
						<div class="col-md-8 col-lg-9">
							<div>
								<?php the_post_thumbnail( 'laundry-service-full img-responsive' ); ?>
							</div>
							<div class="divider divider-47"></div>
							<?php
							while ( have_posts() ) :
								the_post();
								the_content();
							endwhile; // End of the loop.
							?>
						</div>
					</div>
				</div>
			</div>
		</div>
	<?php
}
get_footer();