comments.php
3.13 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
<?php if (!empty($_SERVER['SCRIPT_FILENAME']) and 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) die ('Please do not load this page directly. Thanks!'); ?>
<?php if (post_password_required()): ?>
This post is password protected. Enter the password to view comments.
<?php endif; ?>
<?php if (have_comments()): ?>
<h2 id="comments-header"><?php comments_number('No Responses', 'One Response', '% Responses' );?></h2>
<div class="comments-navigation">
<div class="next-posts"><?php previous_comments_link() ?></div>
<div class="prev-posts"><?php next_comments_link() ?></div>
</div>
<ol id="comment-list">
<?php wp_list_comments(); ?>
</ol>
<div class="comments-navigation">
<div class="next-posts"><?php previous_comments_link() ?></div>
<div class="prev-posts"><?php next_comments_link() ?></div>
</div>
<?php else: // this is displayed if there are no comments so far ?>
<?php if (comments_open()): ?>
<p>No comments so far.</p>
<?php else: // comments are closed ?>
<p>Comments are closed.</p>
<?php endif; ?>
<?php endif; ?>
<?php if ( comments_open() ): ?>
<div id="comment-form-container">
<h2 id="comment-form-title"><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h2>
<div class="cancel-comment_reply">
<?php cancel_comment_reply_link() ?>
</div>
<?php if (get_option('comment_registration') and !is_user_logged_in()): ?>
<p>You must be <a href="<?= wp_login_url(get_permalink()) ?>">logged in</a> to post a comment.</p>
<?php else: ?>
<form action="<?= get_option('siteurl') ?>/wp-comments-post.php" method="post" class="comment-form">
<?php if (is_user_logged_in()): ?>
<p>Logged in as <a href="<?= get_option('siteurl') ?>/wp-admin/profile.php"><?= $user_identity ?></a>. <a href="<?= wp_logout_url(get_permalink()) ?>" title="Log out of this account">Log out »</a></p>
<?php else : ?>
<div class="input-wrap text<?= ($req) ? ' required' : ''?>">
<label for="input-author">Name</label>
<input type="text" name="author" id="input-author" value="<?= esc_attr($comment_author) ?>"<?= ($req) ? ' aria-required="true"' : '' ?> />
</div>
<div class="input-wrap text<?= ($req) ? ' required' : ''?>">
<label for="input-email">Mail (will not be published)</label>
<input type="text" name="email" id="input-email" value="<?= esc_attr($comment_author_email) ?>"<?= ($req) ? ' aria-required="true"' : '' ?> />
</div>
<div class="input-wrap text<?= ($req) ? ' required' : ''?>">
<label for="input-url">Website</label>
<input type="text" name="url" id="input-url" value="<?= esc_attr($comment_author_url) ?>" />
</div>
<?php endif; ?>
<div class="input-wrap textarea<?= ($req) ? ' required' : ''?>">
<label for="input-comment">Message</label>
<textarea name="comment" id="input-comment"></textarea>
<p class="caption">You can use these tags: <code><?= allowed_tags() ?></code></p>
</div>
<div class="input-wrap submit">
<input class="button" type="submit" value="Submit Comment" />
<?php comment_id_fields() ?>
</div>
<?php do_action('comment_form', $post->ID) ?>
</form>
<?php endif; ?>
</div>
<?php endif; ?>