beans_comments_title

Echo the comments title.

beans_comments_title( )

Return: (void)

Source

function beans_comments_title() {

	beans_open_markup_e( 'beans_comments_title', 'h2' );

		beans_output_e( 'beans_comments_title_text', sprintf(
			_n( '%s Comment', '%s Comments', get_comments_number(), 'tm-beans' ),
			number_format_i18n( get_comments_number() )
		) );

	beans_close_markup_e( 'beans_comments_title', 'h2' );

}