Advertisement
phpface

Untitled

Nov 24th, 2018
423
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.11 KB | None | 0 0
  1. if( !function_exists('mars_theme_comment_style') ){
  2.     function mars_theme_comment_style( $comment, $args, $depth ){
  3.         error_reporting(0);
  4.         $GLOBALS['comment'] = $comment;
  5.         extract($args, EXTR_SKIP);
  6.         ?>
  7.         <li <?php comment_class();?> id="comment-<?php print $comment->comment_ID;?>">
  8.             <div class="the-comment">
  9.                 <?php if ( '0' == $comment->comment_approved ) : ?>
  10.                     <p class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'mars' ); ?></p>
  11.                 <?php endif; ?>        
  12.                 <div class="avatar"><?php if ($args['avatar_size'] != 0) echo get_avatar( $comment, $args['avatar_size'] ); ?></div>
  13.                 <div class="comment-content">
  14.                     <?php if( !$comment->user_id || $comment->user_id == 0 ):?>
  15.                         <span class="author">
  16.                             <?php if( get_comment_author_url() ):?>
  17.                                 <a href="<?php echo esc_url( get_comment_author_url() );?>"><?php print $comment->comment_author;?></a> <small><?php printf( __('%s ago','mars') , human_time_diff( get_comment_time('U'), current_time('timestamp') ) );?></small>
  18.                             <?php else:?>
  19.                                 <?php print $comment->comment_author;?> <small><?php printf( __('%s ago','mars') , human_time_diff( get_comment_time('U'), current_time('timestamp') ) );?></small>
  20.                             <?php endif;?>
  21.                            
  22.                         </span>
  23.                     <?php else:?>
  24.                         <span class="author"><a href="<?php print get_author_posts_url( $comment->user_id );?>"><?php print $comment->comment_author;?></a> <small><?php printf( __('%s ago','mars') , human_time_diff( get_comment_time('U'), current_time('timestamp') ) );?></small></span>
  25.                     <?php endif;?>
  26.                    
  27.                     <?php comment_text() ?>
  28.                     <?php
  29.                        
  30.                         print get_comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth'], 'reply_text' => '<i class="fa fa-reply"></i> ' . esc_html__( 'Reply', 'mars' ) )), $comment->comment_ID);
  31.                    
  32.                     ?>
  33.                     <?php if( current_user_can('add_users') ):?>
  34.                         <a href="<?php print get_edit_comment_link( $comment->comment_ID );?>" class="edit"><i class="fa fa-edit"></i> <?php _e('Edit','mars');?></a>
  35.                     <?php endif;?>
  36.                 </div>
  37.             </div>     
  38.         <?php
  39.     }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement