hello
Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : chryzalihi ( 621211) PHP Version : 8.3.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/chryzalihi/www/wp-contentOLD/themes/longevity/ |
<?php
/**
* The template for displaying comments.
*
* The area of the page that contains both current comments
* and the comment form.
*
* @package Longevity
*
*
* 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 class="comment-container" id="comments">
<h3 class="comments-number"><?php comments_number( __('No Comments','longevity'), '1'. esc_html__(' Comment ','longevity'), '% '. esc_html__(' Comments ','longevity')); ?></h3>
</div>
<?php if ( have_comments() ) : ?>
<ul class="comment-list">
<?php wp_list_comments(array( 'callback' => 'longevity_comment')); ?>
</ul>
<?php // End Comments ?>
<?php else : // this is displayed if there are no comments so far
if ( ! comments_open() ) :
?>
<!-- If comments are open, but there are no comments. -->
<!-- If comments are closed. -->
<p><?php esc_html_e('Sorry, the comment form is closed at this time.', 'longevity'); ?></p>
<?php endif; ?>
<?php endif; ?>
<?php
$commenter = wp_get_current_commenter();
$req = get_option( 'require_name_email' );
$aria_req = ( $req ? " aria-required='true'" : '' );
$args = array(
'id_submit' => 'submit-comment',
'title_reply'=>'<span>'. esc_html__( 'Post a Comment','longevity' ) .'</span>',
'title_reply_to' => esc_html__( 'Post a Reply to %s','longevity' ),
'cancel_reply_link' => esc_html__( 'Cancel Reply','longevity' ),
'label_submit' => esc_html__( 'Submit','longevity' ),
'comment_field' => '<textarea id="comment" placeholder="'. esc_html__( 'Write your comment here...','longevity' ).'" name="comment" cols="45" rows="8" aria-required="true"></textarea>',
'comment_notes_before' => '',
'comment_notes_after' => '',
'fields' => apply_filters( 'comment_form_default_fields', array(
'author' => '<input id="author" name="author" placeholder="'. esc_html__( 'Your full name','longevity' ) .'" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '"' . $aria_req . ' />',
'url' => '<input id="email" name="email" placeholder="'. esc_html__( 'E-mail address','longevity' ) .'" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '"' . $aria_req . ' />',
'email' => '<input id="url" name="url" type="text" placeholder="'. esc_html__( 'Website','longevity' ) .'" value="' . esc_attr( $commenter['comment_author_url'] ) . '" />'
) ) );
?>
<div class="comment_pager">
<p><?php paginate_comments_links(); ?></p>
</div>
<div class="comment_form">
<?php comment_form($args); ?>
</div>