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/comments.php
<?php
/**
 * The template for displaying Comments
 * The area of the page that contains comments and the comment form.
 *
 * @package the-landscaper-wp Landscaper
 */

/*
 * If the current post is protected by a password and the visitor has not yet
 * entered the password we will return early without loading the comments.
 */
if ( post_password_required() ) {
	return;
}

$the_landscaper_comment_count = get_comments_number();
?>

 <div id="comments" class="comments-area">
	<?php if ( have_comments() ) : ?>

		<h3 class="comments-title">
			<?php
				printf( // WPCS: XSS OK.
					esc_html( _nx( 'One comment on &ldquo;%2$s&rdquo;', '%1$s comments', $the_landscaper_comment_count, 'comments title', 'the-landscaper-wp' ) ),
					esc_html( number_format_i18n( $the_landscaper_comment_count ) ),
					'<span>'. esc_html( get_the_title() ) .'</span>'
				);
			?>
		</h3>

		<?php if ( get_comment_pages_count() > 1 ) : ?>
			<nav id="comment-nav-above" class="comment-navigation" role="navigation">
				<span class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'the-landscaper-wp' ); ?></span>
				<?php paginate_comments_links(); ?>
			</nav>
		<?php endif; ?>

		<ol class="comment-list">
			<?php wp_list_comments( array( 'callback' => 'thelandscaper_comment' ) ); ?>
		</ol>

		<?php if ( get_comment_pages_count() > 1 ) : ?>
			<nav id="comment-nav-below" class="comment-navigation" role="navigation">
				<span class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'the-landscaper-wp' ); ?></span>
				<?php paginate_comments_links(); ?>
			</nav>
		<?php endif; ?>

		<?php if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
			<p class="no-comments">
				<?php esc_html_e( 'Comments are closed.', 'the-landscaper-wp' ); ?>
			</p>
		<?php endif; ?>

	<?php endif; ?>

	<?php comment_form(); ?>
</div>