Mary_Pieroszkiewicz

Untitled

Aug 13th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.11 KB | None | 0 0
  1. function pureconciousnesslightandlove_comments_theme($comment, $args, $depth) {
  2.             $GLOBALS['comment'] = $comment;
  3.            
  4.             $tag = $args['style'];
  5.         ?>
  6.        
  7.         <<?php echo $tag ?> <?php comment_class(empty($args['has_children']) ? '' : 'parent') ?> id="li-comment-<?php comment_ID() ?>">
  8.             <div id="div-comment-<?php comment_ID(); ?>" class="comment--area inner">            
  9.                 <div class="comment--info">
  10.                     <span class="comment--author"><?php echo get_comment_author_link(); ?></span><br>
  11.                     <span class="comment--date-time"><?php echo get_comment_date('j F Y') . ', ' . get_comment_time('g:i:s') ?></span>
  12.                 </div>
  13.                 <span class="circle__comments--circle"><i class="fas fa-circle"></i></span>
  14.                 <div class="comment--content">
  15.                     <?php comment_text(); ?>
  16.                     <?php comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
  17.                                                
  18.                     <?php if($comment->comment_approved == '0') : ?>
  19.                         <div class="comment-awaiting-moderation">Twój komentarz oczekuje na moderację!</div>
  20.                     <?php endif; ?>
  21.                 </div>
  22.             </div>
  23.         <?php
  24.     }
Advertisement
Add Comment
Please, Sign In to add comment