HEX
Server: Apache
System: Linux webserver101.turnkeywebspace.com 4.18.0-553.81.1.el8_10.x86_64 #1 SMP Mon Oct 27 11:29:19 EDT 2025 x86_64
User: mastech10 (1521)
PHP: 8.2.30
Disabled: show_source,system,shell_exec,passthru,exec,phpinfo,popen,proc_open,eval
Upload Files
File: /home/mastech10/www/runntrail.com/wp-content/themes/royale-news/comments.php
<?php
/**
 * The template for displaying comments
 *
 * This is the template that displays the area of the page that contains both the current comments
 * and the comment form.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package Royale_News
 */

/*
 * 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;
}
?>

<div class="col-md-12">
	<div id="comments" class="comments-area">
		<?php
		// You can start editing here -- including this comment!
		if ( have_comments() ) {
			?>
			<h3 class="comments-title">
				<?php
				$royale_news_comment_count = get_comments_number();
				if ( 1 === $royale_news_comment_count ) {
					printf(
						/* translators: 1: title. */
						esc_html_e( 'One thought on &ldquo;%1$s&rdquo;', 'royale-news' ),
						'<span>' . get_the_title() . '</span>' // phpcs:ignore
					);
				} else {
					printf( // phpcs:ignore
						/* translators: 1: comment count number, 2: title. */
						esc_html( _nx( '%1$s thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', $royale_news_comment_count, 'comments title', 'royale-news' ) ),
						number_format_i18n( $royale_news_comment_count ), // phpcs:ignore
						'<span>' . get_the_title() . '</span>' // phpcs:ignore
					);
				}
				?>
			</h3><!-- .comments-title -->

			<?php the_comments_navigation(); ?>

			<ol class="comment-list">
				<?php
				wp_list_comments(
					array(
						'style'       => 'ul',
						'short_ping'  => true,
						'avatar_size' => 60,
					)
				);
				?>
			</ol><!-- .comment-list -->

			<?php

			the_comments_navigation();

			// If comments are closed and there are comments, let's leave a little note, shall we?
			if ( ! comments_open() ) {
				?>
				<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'royale-news' ); ?></p>
				<?php
			}
		}

		comment_form();
		?>

	</div><!-- #comments -->
</div>