Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function pureconciousnesslightandlove_comments_theme($comment, $args, $depth) {
- $GLOBALS['comment'] = $comment;
- $tag = $args['style'];
- ?>
- <<?php echo $tag ?> <?php comment_class(empty($args['has_children']) ? '' : 'parent') ?> id="li-comment-<?php comment_ID() ?>">
- <div id="div-comment-<?php comment_ID(); ?>" class="comment--area inner">
- <div class="comment--info">
- <span class="comment--author"><?php echo get_comment_author_link(); ?></span><br>
- <span class="comment--date-time"><?php echo get_comment_date('j F Y') . ', ' . get_comment_time('g:i:s') ?></span>
- </div>
- <span class="circle__comments--circle"><i class="fas fa-circle"></i></span>
- <div class="comment--content">
- <?php comment_text(); ?>
- <?php comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth']))) ?>
- <?php if($comment->comment_approved == '0') : ?>
- <div class="comment-awaiting-moderation">Twój komentarz oczekuje na moderację!</div>
- <?php endif; ?>
- </div>
- </div>
- <?php
- }
Advertisement
Add Comment
Please, Sign In to add comment