]> git.openstreetmap.org Git - stateofthemap.git/blob - comments.php
Aerodrome 1.0.5
[stateofthemap.git] / comments.php
1 <?php if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
2                 die ('Please do not load this page directly. Thanks!');
3
4         if ( post_password_required() ) { ?>
5                 <p class="nocomments">This post is password protected. Enter the password to view comments.</p>
6         <?php
7                 return;
8         }
9 ?>
10
11         <!--
12         <h2 id="comments"><?php comments_number(__('No Comments'), __('1 Comment'), __('% Comments')); ?>
13         <?php if ( comments_open() ) : ?>
14                  <a href="#postcomment" title="<?php _e("Leave a comment"); ?>">&raquo;</a>
15         <?php endif; ?>
16         </h2>
17         -->
18
19
20 <?php if ( have_comments() ) : ?>
21
22         <ul id="commentlist2">
23
24         <?php wp_list_comments(); ?>
25
26         </ul>
27
28
29 <div class="navigation">
30                 <div class="alignleft"><?php previous_comments_link() ?></div>
31                 <div class="alignright"><?php next_comments_link() ?></div>
32         </div>
33  <?php else : // this is displayed if there are no comments so far ?>
34
35         <?php if ('open' == $post->comment_status) : ?>
36                 <!-- If comments are open, but there are no comments. -->
37
38          <?php else : // comments are closed ?>
39                 <!-- If comments are closed. 
40                 <p class="nocomments">Comments are closed.</p>-->
41
42         <?php endif; ?>
43 <?php endif; ?>
44
45         <!--
46         <p style="font-size:12px;"><?php post_comments_feed_link(__('RSS feed for comments on this post.')); ?>
47         <?php if ( pings_open() ) : ?>
48                  <a href="<?php trackback_url() ?>" rel="trackback"><?php _e('TrackBack URL'); ?></a>
49         <?php endif; ?>
50         </p>-->
51 <hr>
52 <?php if ('open' == $post->comment_status) : ?>
53
54 <div id="respond">
55
56 <h3 style="padding-left:0px;"><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h3>
57
58 <div class="cancel-comment-reply">
59         <?php cancel_comment_reply_link(); ?>
60 </div>
61
62 <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
63 <p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logged in</a> to post a comment.</p>
64 <?php else : ?>
65
66 <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
67
68 <?php if ( $user_ID ) : ?>
69
70 <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out &raquo;</a></p>
71
72 <?php else : ?>
73
74 <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
75 <label for="author"><small>Name <?php if ($req) echo "(required)"; ?></small></label></p>
76
77 <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
78 <label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label></p>
79
80 <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
81 <label for="url"><small>Website</small></label></p>
82
83 <?php endif; ?>
84
85 <!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
86
87 <p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
88
89 <p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
90 <?php comment_id_fields(); ?>
91 </p>
92 <?php do_action('comment_form', $post->ID); ?>
93
94 </form>
95 </div>
96
97 <?php endif; // If registration required and not logged in ?>
98
99 <?php endif; // if you delete this the sky will fall on your head ?>