HEX
Server: Apache
System: Linux host60.registrar-servers.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: wwwrenee (3804)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/wwwrenee/public_html/wp-content/themes/efor/comments.php
<?php
	if (post_password_required())
	{
		return;
	}
?>

<?php
	if (comments_open() || get_comments_number())
	{
		?>
			<div id="comments" class="comments-area">
				<?php
					if (have_comments())
					{
						?>
							<h3 class="widget-title">
								<span>
									<?php
										printf(_n('1 Comment %2$s', '%1$s Comments %2$s', get_comments_number(), 'efor'),
												number_format_i18n(get_comments_number()), "");
									?>
								</span>
							</h3>
							
							<ol class="commentlist">
								<?php
									wp_list_comments(array('callback' => 'efor_theme_comments',
														   'style'    => 'ol'));
								?>
							</ol>
							
							<?php
								if ((get_comment_pages_count() > 1) && get_option('page_comments'))
								{
									?>
										<nav class="navigation comment-nav" role="navigation">
											<div class="nav-previous">
												<?php
													previous_comments_link('&#8592; ' . esc_html__('Older Comments', 'efor'));
												?>
											</div>
											<div class="nav-next">
												<?php
													next_comments_link(esc_html__('Newer Comments', 'efor') . ' &#8594;');
												?>
											</div>
										</nav>
									<?php
								}
					}
				?>
				
				<?php
					comment_form(
						array(
							'title_reply' => esc_html__('Leave A Comment', 'efor')
						)
					);
				?>
			</div>
		<?php
	}
?>