%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', 'post date', 'bizzoy' ), '' . $time_string . '' ); echo '
  • ' . $posted_on . '
  • '; // WPCS: XSS OK. } endif; if ( ! function_exists( 'bizzoy_posted_by' ) ) : /** * Prints HTML with meta information for the current author. */ function bizzoy_posted_by() { $byline = sprintf( esc_html('%s', 'bizzoy' ), '' ); echo '
  • ' . esc_html( get_the_author() ) . '
  • '; // WPCS: XSS OK. } endif; if ( ! function_exists( 'bizzoy_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function bizzoy_entry_footer() { if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; comments_popup_link( sprintf( wp_kses( /* translators: %s: post title */ __( 'Leave a Comment on %s', 'bizzoy' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ) ); echo ''; } edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'bizzoy' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; if ( ! function_exists( 'bizzoy_comment' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function bizzoy_comment() { // Hide category and tag text for pages. if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo '
  • '; comments_popup_link( ); echo '
  • '; } } endif;