beans_comment_metadata

Echo the comment metadata.

beans_comment_metadata( )

Return: (void)

Source

function beans_comment_metadata() {

	beans_open_markup_e( 'beans_comment_meta', 'div', array( 'class' => 'uk-comment-meta' ) );

		beans_open_markup_e( 'beans_comment_time', 'time', array(
			'datetime' => get_comment_time( 'c' ),
			'itemprop' => 'datePublished',
		) );

			beans_output_e( 'beans_comment_time_text', sprintf(
				_x( '%1$s at %2$s', '1: date, 2: time', 'tm-beans' ),
				get_comment_date(),
				get_comment_time()
			) );

		beans_close_markup_e( 'beans_comment_time', 'time' );

	beans_close_markup_e( 'beans_comment_meta', 'div' );

}