| Server IP : 104.21.73.115 / Your IP : 216.73.217.154 Web Server : Apache System : Linux vps42439 6.8.0-136-generic #136~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 3 16:29:11 UTC x86_64 User : dh_7hi3h9 ( 6349477) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/dh_7hi3h9/regalflower.com/wp-content/themes/ecode...../ |
Upload File : |
<?php
/**
* The template for displaying Comments
*
* The area of the page that contains comments and the comment form.
*
* @package WordPress
* @subpackage TemplateMela
* @since TemplateMela 1.0
*/
/*
* 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="comments-area">
<?php if ( have_comments() ) : ?>
<h2 class="comments-title">
<?php
printf( _n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'ecode' ),
number_format_i18n( get_comments_number() ), get_the_title() );
?>
</h2>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
<nav id="comment-nav-above" class="navigation comment-navigation" role="navigation">
<h3 class="screen-reader-text">
<?php esc_html_e( 'Comment navigation', 'ecode' ); ?>
</h3>
<div class="nav-previous">
<?php previous_comments_link( esc_html__( '← Older Comments', 'ecode' ) ); ?>
</div>
<div class="nav-next">
<?php next_comments_link( esc_html__( 'Newer Comments →', 'ecode' ) ); ?>
</div>
</nav>
<!-- #comment-nav-above -->
<?php endif; // Check for comment navigation. ?>
<ol class="comment-list">
<?php
wp_list_comments( array(
'style' => 'ol',
'short_ping' => true,
'avatar_size'=> 34,
) );
?>
</ol>
<!-- .comment-list -->
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
<nav id="comment-nav-below" class="navigation comment-navigation" role="navigation">
<h3 class="screen-reader-text">
<?php esc_html_e( 'Comment navigation', 'ecode' ); ?>
</h3>
<div class="nav-previous">
<?php previous_comments_link( esc_html__( '← Older Comments', 'ecode' ) ); ?>
</div>
<div class="nav-next">
<?php next_comments_link( esc_html__( 'Newer Comments →', 'ecode' ) ); ?>
</div>
</nav>
<!-- #comment-nav-below -->
<?php endif; // Check for comment navigation. ?>
<?php if ( ! comments_open() ) : ?>
<p class="no-comments">
<?php esc_html_e( 'Comments are closed.', 'ecode' ); ?>
</p>
<?php endif; ?>
<?php endif; // have_comments() ?>
<?php comment_form(); ?>
</div>
<!-- #comments -->