| Server IP : 77.68.64.21 / Your IP : 216.73.216.219 Web Server : Apache System : Linux hp3-wp-1011378.hostingp3.local 3.10.0-1160.144.1.el7.tuxcare.els9.x86_64 #1 SMP Fri Jul 10 17:06:31 UTC 2026 x86_64 User : csh2668128 ( 2112425) PHP Version : 8.1.34 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/cwd/wp-content/themes/jannah/ |
Upload File : |
<?php
/**
* The template for displaying comments
*
*/
defined( 'ABSPATH' ) || exit; // Exit if accessed directly
/*
* 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() || comments_open() ) : ?>
<div id="comments" class="comments-area">
<?php if ( have_comments() ) : ?>
<div id="comments-box" class="container-wrapper">
<div class="block-head">
<h3 id="comments-title" <?php tie_box_class() ?>>
<?php
$comments_number = get_comments_number();
if ( $comments_number > 1 ){
printf( esc_html__( '%s Comments', TIELABS_TEXTDOMAIN ), get_comments_number_text( '0', '1', '%' ) );
}
else {
esc_html_e( 'One Comment', TIELABS_TEXTDOMAIN );
}
?>
</h3>
</div><!-- .block-head /-->
<?php the_comments_navigation(); ?>
<ol class="comment-list">
<?php
wp_list_comments( array(
'style' => 'ol',
'short_ping' => true,
'avatar_size' => 70,
) );
?>
</ol><!-- .comment-list -->
<?php the_comments_navigation(); ?>
</div><!-- #comments-box -->
<?php endif; // Check for have_comments(). ?>
<?php comment_form( array( 'title_reply_before' => '<h3 id="reply-title" '. tie_box_class( 'comment-reply-title', false ) .'>' ) ); ?>
</div><!-- .comments-area -->
<?php endif; // Check for have_comments() || comments_open() ?>