• I’m using wordpress twenty fourteen. I have a problem: this code in comment.php always returns same result:

    <?php
    			printf( _n( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'twentyfourteen' ),
    				number_format_i18n( get_comments_number() ), get_the_title() );
    		?>

    it’s always returning

    One thought on “%2$s”

    even if there is more than 1 comments

  • The topic ‘Comment count in comment-title doesn't work’ is closed to new replies.