forked from them-es/starter-material
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomments.php
executable file
·90 lines (82 loc) · 3.72 KB
/
comments.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
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
<?php
/**
* The template for displaying Comments.
*/
/*
* 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;
}
?>
<div id="comments">
<?php if ( comments_open() && ! have_comments() ) : ?>
<h2 id="comments-title">
<?php
_e( 'No Comments yet!', 'my-theme' );
?>
</h2>
<?php endif; ?>
<?php if ( have_comments() ) : ?>
<h2 id="comments-title">
<?php
$comments_number = get_comments_number();
if ( '1' === $comments_number ) {
/* translators: %s: post title */
printf( _x( 'One Reply to “%s”', 'comments title', 'my-theme' ), get_the_title() );
} else {
printf(
/* translators: 1: number of comments, 2: post title */
_nx(
'%1$s Reply to “%2$s”',
'%1$s Replies to “%2$s”',
$comments_number,
'comments title',
'my-theme'
),
number_format_i18n( $comments_number ),
get_the_title()
);
}
?>
</h2>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-above">
<!--h1 class="assistive-text"><?php _e( 'Comment navigation', 'my-theme' ); ?></h1-->
<div class="nav-previous"><?php previous_comments_link( '<button class="mdc-button mdc-button--icon mdc-color--pink-500 mdc-color-text--white"><i class="material-icons mdc-button__icon" aria-hidden="true">arrow_back</i></button> ' . __( 'Older Comments', 'my-theme' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments', 'my-theme' ) . ' <button class="mdc-button mdc-button--icon mdc-color--pink-500 mdc-color-text--white"><i class="material-icons mdc-button__icon" aria-hidden="true">arrow_forward</i></button>' ); ?></div>
</nav>
<?php endif; // check for comment navigation ?>
<ol class="commentlist">
<?php
/* Loop through and list the comments. Tell wp_list_comments()
* to use theme_comment() to format the comments.
* If you want to overload this in a child theme then you can
* define theme_comment() and that will be used instead.
* See theme_comment() in my-theme/functions.php for more.
*/
wp_list_comments( array( 'callback' => 'themes_starter_comment' ) );
?>
</ol>
<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
<nav id="comment-nav-below">
<!--h1 class="assistive-text"><?php _e( 'Comment navigation', 'my-theme' ); ?></h1-->
<div class="nav-previous"><?php previous_comments_link( '<button class="mdc-button mdc-button--icon mdc-color--pink-500 mdc-color-text--white"><i class="material-icons mdc-button__icon" aria-hidden="true">arrow_back</i></button> ' . __( 'Older Comments', 'my-theme' ) ); ?></div>
<div class="nav-next"><?php next_comments_link( __( 'Newer Comments', 'my-theme' ) . ' <button class="mdc-button mdc-button--icon mdc-color--pink-500 mdc-color-text--white"><i class="material-icons mdc-button__icon" aria-hidden="true">arrow_forward</i></button>' ); ?></div>
</nav>
<?php endif; // check for comment navigation ?>
<?php
/* If there are no comments and comments are closed, let's leave a little note, shall we?
* But we don't want the note on pages or post types that do not support comments.
*/
elseif ( ! comments_open() && ! is_page() && post_type_supports( get_post_type(), 'comments' ) ) :
?>
<h2 id="comments-title" class="nocomments"><?php _e( 'Comments are closed.', 'my-theme' ); ?></h2>
<?php
endif;
// Show Comment Form (customized in functions.php!)
comment_form();
?>
</div><!-- /#comments -->