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/inc/ |
<?php
/**
* Custom comments style
*
* @package Longevity
*
*/
if (!function_exists('longevity_comment')) {
function longevity_comment($comment, $args, $depth) {
$GLOBALS['comment'] = $comment; ?>
<li>
<div class="comment">
<div class="avatar"> <?php echo get_avatar($comment, 60); ?> </div>
<div class="comment-text">
<div class="comment-info">
<h3 class="name"><?php echo get_comment_author_link(); ?></h3>
<span class="comment_date">
<?php comment_time(get_option('date_format')); ?> <?php esc_html_e('at', 'longevity'); ?> <?php comment_time(get_option('time_format')); ?></span>
<?php comment_reply_link( array_merge( $args, array('depth' => $depth, 'max_depth' => $args['max_depth']) ) ); ?>
</div>
<div id="comment-<?php echo comment_ID(); ?>">
<?php comment_text(); ?>
</div>
</div>
</div>
<?php if ($comment->comment_approved == '0') : ?>
<p><em><?php esc_html_e('Your comment is awaiting moderation.', 'longevity'); ?></em></p>
<?php endif; ?>
<?php
}
}