what is all this jumble??

by 1 replies
2
i found this in comments.php





<?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() );


?>
#programming #jumble
  • This particular snippet of code (from the Twenty Fourteen Wordpress theme) is responsible for printing out the line of text above the comments that begins "One thought on [post title]" or "[number] thoughts on [post title]."

    • [ 1 ] Thanks

Next Topics on Trending Feed