HEX
Server: LiteSpeed
System:
User: ()
PHP: 7.3.33
Disabled: ln,cat,popen,pclose,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,system,dl,passthru,exec,shell_exec,popen,proc_close,proc_get_status,proc_nice,proc_open,escapeshellcmd,escapeshellarg,show_source,posix_mkfifo,mysql_list_dbs,get_current_user,getmyuid,pconnect,link,symlink,pcntl_exec,ini_alter,pfsockopen,leak,apache_child_terminate,posix_setpgid,posix_setsid,posix_setuid,proc_terminate,syslog,stream_select,socket_select,socket_create,socket_create_listen,socket_create_pair,socket_listen,socket_accept,socket_bind,socket_strerror,pcntl_fork,pcntl_signal,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,openlog,apache_get_modules,apache_get_version,apache_getenv,apache_note,apache_setenv,virtual,ini_get_all,php_passthru,posix_uname,php_uname,highlight_file,define_syslog_variables,ftp_exec,inject_code,eval
Upload Files
File: /var/www/vhosts/miroglu.net/httpdocs/wp-content/themes/the-landscaper/single-portfolio.php
<?php
/**
 * Single Post Template for the gallery/portfolio post type
 *
 * @package the-landscaper-wp
 */

get_header();

// Get the main title template part
get_template_part( 'parts/main-title' );
?>

<div class="content">
	<div class="container">
		<div class="row">
			<main class="col-xs-12">
				
				<article <?php post_class( 'post-inner' ); ?>>

					<?php if ( 'custom_title' === get_theme_mod( 'qt_gallery_title', 'custom_title' ) ) : ?>
						<h1 class="widget-title"><?php the_title(); ?></h1>
					<?php endif; ?>

					<?php
						if ( get_field( 'gallery_layout' ) === 'split' ) :
							get_template_part( 'parts/project-split' );
						else :
							get_template_part( 'parts/project-fullwidth' );
						endif;
					?>
					
				</article>

			</main>
		</div>
	</div>

	<?php if ( 'hide' !== get_theme_mod( 'qt_gallery_nav', 'show' ) ) : ?>
		<nav class="project-navigation">
			<div class="container">
				<div class="row">
					<div class="col-xs-12">
						<?php previous_post_link( '%link', '<i class="fa-solid fa-caret-left"></i> ' . get_theme_mod( 'qt_gallery_prevtext', 'Previous' ) ); ?>

						<?php if( get_theme_mod( 'qt_gallery_summarytext' ) ) : ?>
							<a href="<?php echo esc_url( get_theme_mod( 'qt_gallery_summarylink' ) ); ?>" class="summary"><?php echo wp_kses_post( get_theme_mod( 'qt_gallery_summarytext' ) ); ?></a>
						<?php endif; ?>
						
						<?php next_post_link( '%link', get_theme_mod( 'qt_gallery_nexttext', 'Next' ) . ' <i class="fa-solid fa-caret-right"></i>' );?>
					</div>
				</div>
			</div>
		</nav>
	<?php endif; ?>

</div>

<?php get_footer(); ?>