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/loop/blog/list.php
<?php
/**
 * The Landscaper blog list loop template
 */
?>

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
	
	<article <?php post_class( 'post-inner' ); ?>>
		<?php if ( 'show' === get_theme_mod( 'qt_blog_bigdate', 'show' ) ) : ?>
			<div class="post-left-meta">
				<?php if( is_sticky() ) : ?>
					<div class="box stickylabel">
						<span><i class="fa fa-bookmark"></i>Sticky</span>
					</div>
				<?php endif; ?>
				<div class="box date">
					<span class="day"><?php the_time( 'd' ); ?></span>
					<span class="month"><?php the_time( 'M' ); ?></span>
					<span class="year"><?php the_time( 'Y' ); ?></span>
				</div>
			</div>
		<?php endif; ?>
		<div class="post-content <?php echo 'show' === get_theme_mod( 'qt_blog_bigdate', 'show' ) ? '' : 'no-big-date';?>">
			<?php if( has_post_thumbnail() ) : ?>
				<a href="<?php esc_url( the_permalink() ); ?>">
					<?php the_post_thumbnail( 'post-thumbnail', array( 'class' => 'img-responsive' ) ); ?>
				</a>
			<?php endif; ?>
			<?php if ( 'show' === get_theme_mod( 'qt_blog_metadata', 'show' ) ) : ?>
				<div class="post-meta-data">
					<?php if ( 'show' != get_theme_mod( 'qt_blog_bigdate', 'show' ) ) : ?>
						<span class="date updated"><?php the_time( get_option( 'date_format' ) ); ?></span>
						<span class="round-divider"></span>
					<?php endif; ?>
					<?php if ( 'show' === get_theme_mod( 'qt_blog_commments', 'show' ) ) : ?>
						<span class="comments">
							<a href="<?php esc_url( comments_link() ); ?>"><?php echo esc_attr( get_comments_number() ); ?> <?php echo esc_html_e( 'Comments', 'the-landscaper-wp' ); ?></a>
						</span>
						<span class="round-divider"></span>
					<?php endif; ?>
					<span class="vcard author post-author"><span class="fn"><?php esc_html_e( 'By', 'the-landscaper-wp'); ?> <?php the_author(); ?></span></span>
					<?php if( has_category() ) : ?>
						<span class="round-divider"></span>
						<span class="category"><?php the_category( ', ' ); ?></span>
					<?php endif; ?>
					<?php if( has_tag() ) : ?>
						<span class="round-divider"></span>
						<span class="tags"><?php the_tags( ' ' ); ?></span>
					<?php endif; ?>
				</div>
			<?php endif; ?>
			
			<h2 class="post-title entry-title">
				<a href="<?php esc_url( the_permalink() ); ?>"><?php the_title(); ?></a>
			</h2>

			<?php thelandscaper_blog_grid_display_excerpt(); ?>
			
			<div class="clearfix"></div>
		</div>
	</article>
	
<?php endwhile; else : ?>

	<h3><?php esc_html_e( 'Sorry, no results found.', 'the-landscaper-wp' ); ?></h3>

<?php endif; ?>