wp/wp-includes/theme-compat/comments.php
changeset 16 a86126ab1dd4
parent 9 177826044cd9
child 21 48c4eec2b7e6
equal deleted inserted replaced
15:3d4e9c994f10 16:a86126ab1dd4
     5  * @deprecated 3.0.0
     5  * @deprecated 3.0.0
     6  *
     6  *
     7  * This file is here for backward compatibility with old themes and will be removed in a future version
     7  * This file is here for backward compatibility with old themes and will be removed in a future version
     8  */
     8  */
     9 _deprecated_file(
     9 _deprecated_file(
    10 	/* translators: %s: template name */
    10 	/* translators: %s: Template name. */
    11 	sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ),
    11 	sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ),
    12 	'3.0.0',
    12 	'3.0.0',
    13 	null,
    13 	null,
    14 	/* translators: %s: template name */
    14 	/* translators: %s: Template name. */
    15 	sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) )
    15 	sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) )
    16 );
    16 );
    17 
    17 
    18 // Do not delete these lines
    18 // Do not delete these lines.
    19 if ( ! empty( $_SERVER['SCRIPT_FILENAME'] ) && 'comments.php' == basename( $_SERVER['SCRIPT_FILENAME'] ) ) {
    19 if ( ! empty( $_SERVER['SCRIPT_FILENAME'] ) && 'comments.php' === basename( $_SERVER['SCRIPT_FILENAME'] ) ) {
    20 	die( 'Please do not load this page directly. Thanks!' );
    20 	die( 'Please do not load this page directly. Thanks!' );
    21 }
    21 }
    22 
    22 
    23 if ( post_password_required() ) { ?>
    23 if ( post_password_required() ) { ?>
    24 		<p class="nocomments"><?php _e( 'This post is password protected. Enter the password to view comments.' ); ?></p>
    24 		<p class="nocomments"><?php _e( 'This post is password protected. Enter the password to view comments.' ); ?></p>
    31 
    31 
    32 <?php if ( have_comments() ) : ?>
    32 <?php if ( have_comments() ) : ?>
    33 	<h3 id="comments">
    33 	<h3 id="comments">
    34 		<?php
    34 		<?php
    35 		if ( 1 == get_comments_number() ) {
    35 		if ( 1 == get_comments_number() ) {
    36 			/* translators: %s: post title */
    36 			printf(
    37 			printf( __( 'One response to %s' ), '&#8220;' . get_the_title() . '&#8221;' );
    37 				/* translators: %s: Post title. */
       
    38 				__( 'One response to %s' ),
       
    39 				'&#8220;' . get_the_title() . '&#8221;'
       
    40 			);
    38 		} else {
    41 		} else {
    39 			/* translators: 1: number of comments, 2: post title */
       
    40 			printf(
    42 			printf(
       
    43 				/* translators: 1: Number of comments, 2: Post title. */
    41 				_n( '%1$s response to %2$s', '%1$s responses to %2$s', get_comments_number() ),
    44 				_n( '%1$s response to %2$s', '%1$s responses to %2$s', get_comments_number() ),
    42 				number_format_i18n( get_comments_number() ),
    45 				number_format_i18n( get_comments_number() ),
    43 				'&#8220;' . get_the_title() . '&#8221;'
    46 				'&#8220;' . get_the_title() . '&#8221;'
    44 			);
    47 			);
    45 		}
    48 		}
    57 
    60 
    58 	<div class="navigation">
    61 	<div class="navigation">
    59 		<div class="alignleft"><?php previous_comments_link(); ?></div>
    62 		<div class="alignleft"><?php previous_comments_link(); ?></div>
    60 		<div class="alignright"><?php next_comments_link(); ?></div>
    63 		<div class="alignright"><?php next_comments_link(); ?></div>
    61 	</div>
    64 	</div>
    62 <?php else : // this is displayed if there are no comments so far ?>
    65 <?php else : // This is displayed if there are no comments so far. ?>
    63 
    66 
    64 	<?php if ( comments_open() ) : ?>
    67 	<?php if ( comments_open() ) : ?>
    65 		<!-- If comments are open, but there are no comments. -->
    68 		<!-- If comments are open, but there are no comments. -->
    66 
    69 
    67 	<?php else : // comments are closed ?>
    70 	<?php else : // Comments are closed. ?>
    68 		<!-- If comments are closed. -->
    71 		<!-- If comments are closed. -->
    69 		<p class="nocomments"><?php _e( 'Comments are closed.' ); ?></p>
    72 		<p class="nocomments"><?php _e( 'Comments are closed.' ); ?></p>
    70 
    73 
    71 	<?php endif; ?>
    74 	<?php endif; ?>
    72 <?php endif; ?>
    75 <?php endif; ?>