HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ns3133907 6.8.0-86-generic #87-Ubuntu SMP PREEMPT_DYNAMIC Mon Sep 22 18:03:36 UTC 2025 x86_64
User: cssnetorguk (1024)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: /home/modernpainters.co.uk/public_html/wp-content/themes/honeypress/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://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package Honeypress
 */

/*
 * 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;
}
if ( have_comments() ) :?>
	<article class="comment-section">
		<div class="comment-title">
			<h3>
				<?php
				$honeypress_comment_count = get_comments_number();
				if ( '1' === $honeypress_comment_count ) {
					printf(
					/* translators: 1: title. */
					esc_html__( '1 COMMENT', 'honeypress' ),
					'<span>' . esc_html(get_the_title()) . '</span>'
					);
				} else {
					printf(
					/* translators: 1: comment count number, 2: title. */
					esc_html( _nx( '%1$s COMMENT', '%1$s COMMENTS', $honeypress_comment_count, 'comments title', 'honeypress' ) ),
					esc_html( number_format_i18n( $honeypress_comment_count )),
					'<span>' . esc_html(get_the_title()) . '</span>'
					);
				}
				?>
			</h3>
		</div>
		<?php the_comments_navigation();
		wp_list_comments( 'type=comment&callback=honeypress_comment');
		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.', 'honeypress' ); ?></p>
		<?php endif; 
		echo '</article>';
		endif; 
		echo '<article class="comment-form">';
		comment_form();
		echo '</article>';?>