HEX
Server: Apache
System: Linux edrants.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: fye (10002)
PHP: 7.4.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/followyourears.com/httpdocs/wp-content/themes/hatch/comment.php
<?php
/**
 * Comment Template
 *
 * The comment template displays an individual comment. This can be overwritten by templates specific
 * to the comment type (comment.php, comment-{$comment_type}.php, comment-pingback.php, 
 * comment-trackback.php) in a child theme.
 *
 * @package Hatch
 * @subpackage Template
 */

	global $post, $comment;
?>

	<li id="comment-<?php comment_ID(); ?>" class="<?php hybrid_comment_class(); ?>">

		<?php do_atomic( 'before_comment' ); // hatch_before_comment ?>

		<div class="comment-wrap">

			<?php do_atomic( 'open_comment' ); // hatch_open_comment ?>

			<?php echo hybrid_avatar(); ?>

			<div class="comment-meta"><?php comment_author(); ?> &middot;  <?php comment_date('F j, Y'); ?> at <?php comment_time('H:i:s'); ?> <?php edit_comment_link(); ?> &middot; <?php comment_reply_link(); ?> 
            </div>

			<div class="comment-content comment-text">
				<?php if ( '0' == $comment->comment_approved ) : ?>
					<p class="alert moderation"><?php _e( 'Your comment is awaiting moderation', 'hatch' ); ?></p>
				<?php endif; ?>

				<?php comment_text( $comment->comment_ID ); ?>
			</div><!-- .comment-content .comment-text -->

			<?php do_atomic( 'close_comment' ); // hatch_close_comment ?>

		</div><!-- .comment-wrap -->

		<?php do_atomic( 'after_comment' ); // hatch_after_comment ?>

	<?php /* No closing </li> is needed.  WordPress will know where to add it. */ ?>