HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/origin/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 Origin
 * @subpackage Template
 */

	global $post, $comment;
?>

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

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

		<div class="comment-wrap">

			<?php do_atomic( 'open_comment' ); // origin_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(); ?> &rarr;</div>
			<div class="comment-content comment-text">
				
				<?php if ( '0' == $comment->comment_approved ) : ?>
				
					<p class="alert moderation"><?php _e( 'Your comment is awaiting moderation', 'origin' ); ?></p>
					
				<?php endif; ?>

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

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

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

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

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