HEX
Server: Apache
System: Linux p3plzcpnl504740.prod.phx3.secureserver.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: l2pbkn5l6xav (4972877)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: /home/l2pbkn5l6xav/public_html/wp-content/themes/prime-business/comments.php
<?php
/**
 * The template for displaying comments
 */

/*
 * 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 id="comments" class="block">
	<div class="sub-block">
		<?php
		// You can start editing here -- including this comment!
		if ( have_comments() ) : ?>
			<h3 class="comments-title">
				<?php comments_number(
					esc_html__( 'No Responses', 'prime-business' ),
					esc_html__( 'One Response', 'prime-business' ),
					esc_html__( '% Responses', 'prime-business' )
					);
				?>
			</h3>

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

			<?php the_comments_pagination( array(
				'prev_text' => esc_html__( 'Previous', 'prime-business' ),
				'next_text' => esc_html__( 'Next', 'prime-business' ),
			) );

		endif; // Check for have_comments().

		// If comments are closed and there are comments, let's leave a little note, shall we?
		if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
			<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'prime-business' ); ?></p>
		<?php
		endif;
		comment_form();
		?>
	</div><!-- /.sub-block -->
</div><!-- #comments -->