%2$s'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ''; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); $posted_on = sprintf( /* translators: %s: post date. */ esc_html_x( 'Posted on %s', 'post date', 'bc-business-consulting' ), '' . $time_string . '' ); echo ''; } endif; if ( ! function_exists( 'bc_business_consulting_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function bc_business_consulting_entry_footer() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { /* translators: used between list items, there is a space after the comma */ /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', esc_html_x( ', ', 'list item separator', 'bc-business-consulting' ) ); if ( $tags_list ) { /* translators: 1: list of tags. */ printf( '
' . esc_html__( 'Tagged : %1$s', 'bc-business-consulting' ) . '
', $tags_list ); // WPCS: XSS OK. } } edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'bc-business-consulting' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif;