Advertisement
phpface

Untitled

Jul 20th, 2017
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.73 KB | None | 0 0
  1. if( ! function_exists('mars_theme_comment_style') ){
  2.     /**
  3.      * The comments template
  4.      */
  5.     function mars_theme_comment_style( $comment, $args, $depth ){
  6.         $GLOBALS['comment'] = $comment;
  7.         extract($args, EXTR_SKIP);
  8.         ?>
  9.         <li <?php comment_class();?> id="comment-<?php print $comment->comment_ID;?>">
  10.             <div class="the-comment">
  11.                 <?php if ( '0' == $comment->comment_approved ) : ?>
  12.                     <p class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'mars' ); ?></p>
  13.                 <?php endif; ?>        
  14.                 <div class="avatar"><?php if ($args['avatar_size'] != 0) echo get_avatar( $comment, $args['avatar_size'] ); ?></div>
  15.                 <div class="comment-content">
  16.                     <?php if( !$comment->user_id || $comment->user_id == 0 ):?>
  17.                         <span class="author"><a href="<?php print get_comment_author_url();?>"><?php print $comment->comment_author;?></a>
  18.                             <small><?php echo get_comment_date();?></small>
  19.                         </span>
  20.                     <?php else:?>
  21.                         <span class="author">
  22.                             <a href="<?php print get_author_posts_url( $comment->user_id );?>"><?php print $comment->comment_author;?></a>
  23.                             <small><?php echo get_comment_date();?></small>
  24.                         </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