%2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( DATE_W3C ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( DATE_W3C ) ), esc_html( get_the_modified_date() ) ); $posted_on = sprintf( /* translators: %s: post date. */ esc_html( '%s', 'benzile'), '' . $time_string . '' ); echo '
' . $posted_on . '
'; // WPCS: XSS OK. } endif; if ( ! function_exists( 'benzile_posted_by' ) ) : /** * Prints HTML with meta information for the current author. */ function benzile_posted_by() { $byline = sprintf( /* translators: %s: post author. */ esc_html( '%s', 'post author'), '' . esc_html( get_the_author() ) . '' ); echo '
  • ' . $byline . '
  • '; // WPCS: XSS OK. } endif; if ( ! function_exists( 'benzile_comment' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function benzile_comment() { // Hide category and tag text for pages. if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo '
  • '; comments_popup_link( ); echo '
  • '; } } endif;