%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_x( ' %s', 'post date', 'blook' ),
'' . $time_string . ''
);
?>
50))) .'">' . esc_html( get_the_author() ) . ''
);
echo ' ' . $byline . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
endif;
if ( ! function_exists( 'blook_comment_count' ) ) :
/**
* Prints HTML with meta information for the current author.
*/
function blook_comment_count($post_id) {
$show_comment_count = 1;
if ($show_comment_count == 1):
$comment_count = get_comments_number($post_id);
if (absint($comment_count) >= 1):
?>
";
break;
case "video":
$post_format = "";
break;
case "gallery":
$post_format = "";
break;
case "quote":
$post_format = "";
break;
case "audio":
$post_format = "";
break;
default:
$post_format = "";
}
echo $post_format;
}
endif;
if ( ! function_exists( 'blook_entry_footer' ) ) :
/**
* Prints HTML with meta information for the categories, tags and comments.
*/
function blook_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 */
$tags_list = get_the_tag_list( '', esc_html_x( ' ', 'list item separator', 'blook' ) );
if ( $tags_list ) {
/* translators: 1: list of tags. */
printf( 'Tagged' . esc_html__( ' %1$s', 'blook' ) . '', $tags_list ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
}
if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
echo '