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/theflexguy.com/wp-content/themes/rt_affinity_wp/includes/comments.php
<?php

// Comment Styling

function mytheme_comment($comment, $args, $depth) {

   $option = get_option('affinity-options');
   
   $GLOBALS['comment'] = $comment; ?>
   
   <li <?php comment_class(); ?> id="li-comment-<?php comment_ID() ?>">
   	<div id="comment-<?php comment_ID(); ?>" class="comment-div-wrapper">
      
      <div class="comment-author vcard">
         
         <div class="comment_gravatar_wrapper">
         
         	<?php echo get_avatar($comment,$size=50); ?>
		
		 </div>
         
         <div class="comment-meta commentmetadata">
         
         	<div class="comment-meta-time">
      	
      	 		<a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf(_r('%1$s %2$s'), get_comment_date(),  get_comment_time()) ?></a>
      			<?php edit_comment_link(_r('(Edit)'),'  ','') ?>
      		
      		</div>
         
         	<?php printf(_r('<cite class="fn">posted by %s</cite>'), get_comment_author_link()) ?>
      
      	 </div>
         
         <div class="clr"></div>
      
      </div>
      
      <?php if ($comment->comment_approved == '0') : ?>
      
         <span class="attention"><?php _re('Your comment is awaiting moderation.') ?></span>
         
      <?php endif; ?>

      <?php comment_text() ?>

      <div class="reply">
         <?php comment_reply_link(array_merge( $args, array('depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
      </div>
      
      <div class="clr"></div>
     
	</div>

<?php } ?>