%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(
_x( 'Posted on %s', 'post date', 'bfront' ),
'' . $time_string . ''
);
$byline = sprintf(
_x( 'by %s', 'post author', 'bfront' ),
'' . esc_html( get_the_author() ) . ''
);
echo '' . $posted_on . ' ' . $byline . '';
}
endif;
if ( ! function_exists( 'bfront_entry_footer' ) ) :
/**
* Prints HTML with meta information for the categories, tags and comments.
*/
function bfront_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 */
/* $categories_list = get_the_category_list( __( ', ', 'bfront' ) );
if ( $categories_list && bfront_categorized_blog() ) {
printf( '' . __( ' %1$s ', 'bfront' ) . '', $categories_list );
} */
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_tag_list( '', __( ' ', 'bfront' ) );
if ( $tags_list ) {
printf( '' . __( ' %1$s ', 'bfront' ) . '', $tags_list );
}
}
if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
echo '';
}
edit_post_link( __( 'Edit', 'bfront' ), '', '' );
echo bfront_share_bar ();
}
endif;