forked from jmhdez/Decode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomments.php
More file actions
125 lines (106 loc) · 4.45 KB
/
comments.php
File metadata and controls
125 lines (106 loc) · 4.45 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
/**
* The template for displaying comments.
*
* The area of the page that contains both current comments
* and the comment form.
*
* @package Decode
*/
/*
* If the current post is protected by a password and
* the visitor has not yet entered the password we will
* return early without loading the comments.
*/
if ( post_password_required() ) {
return;
}
?>
<?php tha_comments_before(); ?>
<div id="comments" class="comments-area">
<?php if ( have_comments() ) : ?>
<h2 class="comments-title">
<?php
printf( _nx( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'decode' ),
number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );
?>
</h2>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-below" class="navigation comment-navigation" role="navigation">
<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'decode' ); ?></h2>
<div class="nav-links">
<div class="nav-previous"><?php previous_comments_link( __( 'Older Comments', 'decode' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments', 'decode' ) ); ?></div>
</div><!-- .nav-links -->
</nav><!-- #comment-nav-above -->
<?php endif; // check for comment navigation ?>
<ol class="comment-list">
<?php
$args = array(
'style' => 'ol',
'short_ping' => true,
'avatar_size' => 64,
);
$args = apply_filters( 'decode_wp_list_comments_args', $args );
wp_list_comments( $args );
?>
</ol><!-- .comment-list -->
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-below" class="navigation comment-navigation" role="navigation">
<h2 class="screen-reader-text"><?php esc_html_e( 'Comment navigation', 'decode' ); ?></h2>
<div class="nav-links">
<div class="nav-previous"><?php previous_comments_link( __( 'Older Comments', 'decode' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments', 'decode' ) ); ?></div>
</div><!-- .nav-links -->
</nav><!-- #comment-nav-below -->
<?php endif; // check for comment navigation ?>
<?php endif; // have_comments() ?>
<?php
// If comments are closed and there are comments, let's leave a little note, shall we?
if ( ! comments_open() && '0' != get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
?>
<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'decode' ); ?></p>
<?php endif; ?>
<?php
$comments_args = array(
'title_reply' => __( 'Leave a Reply', 'decode' ),
'title_reply_to' => __( 'Leave a Reply to %s', 'decode' ),
'cancel_reply_link' => __( 'Cancel reply', 'decode' ),
'label_submit' => __( 'Post Comment', 'decode' ),
);
if ( get_theme_mod( 'show_allowed_tags', false ) == false ) {
$comments_args = array(
'comment_notes_after' => '',
);
}
?>
<?php
// Add a class to the comment form if Jetpack Comments are enabled.
ob_start();
comment_form( $comments_args );
if ( class_exists( 'Jetpack' ) && Jetpack::is_module_active( 'comments' ) ) {
echo str_replace( 'class="comment-form"','class="comment-form jetpack-comments-active"', ob_get_clean() );
}
?>
<?php
_x( 'Comment', 'noun', 'decode' );
__( 'You must be <a href="%s">logged in</a> to post a comment.', 'decode' );
__( 'Logged in as <a href="%1$s">%2$s</a>. <a href="%3$s" title="Log out of this account">Log out?</a>', 'decode' );
__( 'Your email address will not be published.', 'decode' );
__( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: %s', 'decode' );
?>
<?php if ( get_theme_mod( 'show_allowed_tags', false ) == true ) : ?>
<script>
function hasClass( el, cls ) {
return ( ' ' + el.className + ' ' ).indexOf( ' ' + cls + ' ' ) > -1;
}
var target = document.querySelector( '.form-allowed-tags' );
document.querySelector( 'textarea#comment' ).addEventListener( 'click', function() {
if ( ! hasClass( target, 'visible' ) ) {
target.className += ' ' + 'visible';
}
}, false );
</script>
<?php endif; ?>
</div><!-- #comments -->
<?php tha_comments_after(); ?>