HEX
Server: Apache/2.2.34 (Unix) mod_fastcgi/mod_fastcgi-SNAP-0910052141
System: Linux Kou-Etsu-Dou 4.4.59+ #25556 SMP PREEMPT Thu Mar 4 18:03:46 CST 2021 x86_64
User: hosam (1026)
PHP: 7.2.29
Disabled: NONE
Upload Files
File: /volume1/web/wordpress/wp-content/themes/sullivan/comments.php
<?php 

if ( post_password_required() ) {
	return;
}

if ( $comments ) : ?>

	<div class="comments" id="comments">

		<?php

		$comments_number = absint( get_comments_number() );
		// Translators: %s = the number of comments
		$comments_title = sprintf( _nx( '%s Comment', '%s Comments', $comments_number, 'Translators: %s = the number of comments', 'sullivan' ), $comments_number ); ?>

		<h3 class="comment-reply-title"><?php echo $comments_title; ?></h3>

		<?php

		wp_list_comments( array(
			'style' 		=> 'div',
			'avatar_size'	=> 0,
		) );

		if ( paginate_comments_links( 'echo=0' ) ) : ?>

			<div class="comments-pagination pagination"><?php paginate_comments_links(); ?></div>

		<?php endif; ?>

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

<?php endif; ?>

<?php if ( comments_open() || pings_open() ) : ?>

	<?php comment_form( 'comment_notes_before=&comment_notes_after=' ); ?>

<?php elseif ( $comments ) : ?>

	<div id="respond">

		<p class="closed"><?php _e( 'Comments closed', 'sullivan' ); ?></p>

	</div><!-- #respond -->

<?php endif; ?>