HEX
Server: Apache
System: Linux host.fiblib.com 5.14.0-570.58.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 29 06:24:11 EDT 2025 x86_64
User: scientificreligi (1062)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/scientificreligi/public_html/wp-content/themes/scientific-religion/templates/comments.php
<?php
/**
 * The template for displaying comments.php
 * @var $comment
 * @var $args
 * @var $depth
 */
$GLOBALS['comment'] = $comment;
?>
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID() ?>">
    <div id="comment-<?php comment_ID(); ?>" class="comment-body clearfix">
        <?php echo get_avatar($comment, $args['avatar_size']); ?>
        <div class="comment-text entry-content">
            <ul class="comment-meta-top d-flex list-inline flex-wrap align-items-center">
                <li class="comment-meta-author">
                    <h4 class="author-name"><?php echo get_comment_author_link() ?></h4>
                </li>
                <li class="comment-meta-date">
                    <?php printf( _x( '%s ago', '%s = human-readable time difference', 'g5plus-auteur' ), human_time_diff( get_comment_time( 'U' ), current_time( 'timestamp' ) ) ); ?>
                </li>
            </ul>
            <div class="gf-entry-content">
                <?php comment_text() ?>
                <?php if ($comment->comment_approved == '0') : ?>
                    <em><?php esc_html_e('Your comment is awaiting moderation.', 'g5plus-auteur'); ?></em>
                <?php endif; ?>
            </div>
            <div class="comment-meta-footer d-flex list-inline flex-wrap align-items-center">
                <?php comment_reply_link(array_merge($args, array(
                    'depth' => $depth,
                    'max_depth' => $args['max_depth'],
                    'reply_text' => '<i class="fa fa-comment"></i> ' . esc_html__('Reply', 'g5plus-auteur'),
                    'reply_to_text' => '<i class="fa fa-comment"></i> ' . esc_html__('Reply to %s', 'g5plus-auteur'),
                    'login_text' => '<i class="fa fa-comment"></i> ' . esc_html__('Log in to Reply', 'g5plus-auteur'),
                ))) ?>
                <?php edit_comment_link('<i class="fa fa-edit"></i> ' . esc_html__('Edit','g5plus-auteur')); ?>
            </div>
        </div>
    </div>