]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/theme-compat/comments.php
WordPress 4.4
[autoinstalls/wordpress.git] / wp-includes / theme-compat / comments.php
1 <?php
2 /**
3  * @package WordPress
4  * @subpackage Theme_Compat
5  * @deprecated 3.0
6  *
7  * This file is here for Backwards compatibility with old themes and will be removed in a future version
8  *
9  */
10 _deprecated_file(
11         /* translators: %s: template name */
12         sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ),
13         '3.0',
14         null,
15         /* translators: %s: template name */
16         sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) )
17 );
18
19 // Do not delete these lines
20         if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
21                 die ('Please do not load this page directly. Thanks!');
22
23         if ( post_password_required() ) { ?>
24                 <p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.'); ?></p>
25         <?php
26                 return;
27         }
28 ?>
29
30 <!-- You can start editing here. -->
31
32 <?php if ( have_comments() ) : ?>
33         <h3 id="comments">
34                 <?php
35                         if ( 1 == get_comments_number() ) {
36                                 /* translators: %s: post title */
37                                 printf( __( 'One response to %s' ),  '&#8220;' . get_the_title() . '&#8221;' );
38                         } else {
39                                 /* translators: 1: number of comments, 2: post title */
40                                 printf( _n( '%1$s response to %2$s', '%1$s responses to %2$s', get_comments_number() ),
41                                         number_format_i18n( get_comments_number() ),  '&#8220;' . get_the_title() . '&#8221;' );
42                         }
43                 ?>
44         </h3>
45
46         <div class="navigation">
47                 <div class="alignleft"><?php previous_comments_link() ?></div>
48                 <div class="alignright"><?php next_comments_link() ?></div>
49         </div>
50
51         <ol class="commentlist">
52         <?php wp_list_comments();?>
53         </ol>
54
55         <div class="navigation">
56                 <div class="alignleft"><?php previous_comments_link() ?></div>
57                 <div class="alignright"><?php next_comments_link() ?></div>
58         </div>
59  <?php else : // this is displayed if there are no comments so far ?>
60
61         <?php if ( comments_open() ) : ?>
62                 <!-- If comments are open, but there are no comments. -->
63
64          <?php else : // comments are closed ?>
65                 <!-- If comments are closed. -->
66                 <p class="nocomments"><?php _e('Comments are closed.'); ?></p>
67
68         <?php endif; ?>
69 <?php endif; ?>
70
71 <?php if ( comments_open() ) : ?>
72
73 <div id="respond">
74
75 <h3><?php comment_form_title( __('Leave a Reply'), __('Leave a Reply to %s' ) ); ?></h3>
76
77 <div id="cancel-comment-reply">
78         <small><?php cancel_comment_reply_link() ?></small>
79 </div>
80
81 <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?>
82 <p><?php printf(__('You must be <a href="%s">logged in</a> to post a comment.'), wp_login_url( get_permalink() )); ?></p>
83 <?php else : ?>
84
85 <form action="<?php echo site_url(); ?>/wp-comments-post.php" method="post" id="commentform">
86
87 <?php if ( is_user_logged_in() ) : ?>
88
89 <p><?php /* translators: %s: user profile link  */
90 printf( __( 'Logged in as %s.' ), sprintf( '<a href="%1$s">%2$s</a>', get_edit_user_link(), $user_identity ) ); ?>
91 <a href="<?php echo wp_logout_url( get_permalink() ); ?>" title="<?php esc_attr_e( 'Log out of this account' ); ?>"><?php _e( 'Log out &raquo;' ); ?></a></p>
92
93 <?php else : ?>
94
95 <p><input type="text" name="author" id="author" value="<?php echo esc_attr($comment_author); ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
96 <label for="author"><small><?php _e('Name'); ?> <?php if ($req) _e('(required)'); ?></small></label></p>
97
98 <p><input type="text" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
99 <label for="email"><small><?php _e('Mail (will not be published)'); ?> <?php if ($req) _e('(required)'); ?></small></label></p>
100
101 <p><input type="text" name="url" id="url" value="<?php echo  esc_attr($comment_author_url); ?>" size="22" tabindex="3" />
102 <label for="url"><small><?php _e('Website'); ?></small></label></p>
103
104 <?php endif; ?>
105
106 <p><textarea name="comment" id="comment" cols="58" rows="10" tabindex="4"></textarea></p>
107
108 <p><input name="submit" type="submit" id="submit" tabindex="5" value="<?php esc_attr_e('Submit Comment'); ?>" />
109 <?php comment_id_fields(); ?>
110 </p>
111 <?php
112 /** This filter is documented in wp-includes/comment-template.php */
113 do_action( 'comment_form', $post->ID );
114 ?>
115
116 </form>
117
118 <?php endif; // If registration required and not logged in ?>
119 </div>
120
121 <?php endif; // if you delete this the sky will fall on your head ?>