-
Notifications
You must be signed in to change notification settings - Fork 1
/
comment.php
42 lines (29 loc) · 1.5 KB
/
comment.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* Comment Template
*
* The comment template displays an individual comment. This can be overwritten by templates specific
* to the comment type (comment.php, comment-{$comment_type}.php, comment-pingback.php,
* comment-trackback.php) in a child theme.
*
* @package Shell
* @subpackage Template
*/
global $post, $comment;
?>
<li <?php shell_comment_attributes(); ?>>
<?php do_atomic( 'before_comment' ); // shell_before_comment ?>
<div class="comment-wrap">
<?php do_atomic( 'open_comment' ); // shell_open_comment ?>
<?php echo shell_avatar(); ?>
<?php echo apply_atomic_shortcode( 'comment_meta', '<div class="comment-meta">[comment-author] [comment-published] [comment-permalink before="| "] [comment-edit-link before="| "] [comment-reply-link before="| "]</div>' ); // shell_comment_meta ?>
<div class="comment-content comment-text">
<?php if ( '0' == $comment->comment_approved ) : ?>
<?php echo apply_atomic_shortcode( 'comment_moderation', '<p class="alert moderation">' . __( 'Your comment is awaiting moderation.', 'shell' ) . '</p>' ); // shell_comment_moderation ?>
<?php endif; ?>
<?php comment_text( $comment->comment_ID ); ?>
</div><!-- .comment-content .comment-text -->
<?php do_atomic( 'close_comment' ); // shell_close_comment ?>
</div><!-- .comment-wrap -->
<?php do_atomic( 'after_comment' ); // shell_after_comment ?>
<?php /* No closing </li> is needed. WordPress will know where to add it. */ ?>