wp/wp-includes/theme-compat/comments.php
changeset 21 48c4eec2b7e6
parent 16 a86126ab1dd4
equal deleted inserted replaced
20:7b1b88e27a20 21:48c4eec2b7e6
    30 <!-- You can start editing here. -->
    30 <!-- You can start editing here. -->
    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 			printf(
    36 			printf(
    37 				/* translators: %s: Post title. */
    37 				/* translators: %s: Post title. */
    38 				__( 'One response to %s' ),
    38 				__( 'One response to %s' ),
    39 				'&#8220;' . get_the_title() . '&#8221;'
    39 				'&#8220;' . get_the_title() . '&#8221;'
    40 			);
    40 			);