%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() )
);
$year = get_the_date( 'Y' );
$month = get_the_date( 'm' );
$link = ( is_single() ) ? get_month_link( $year, $month ) : get_permalink();
$posted_on = '' . $time_string . '';
printf( '%1$s', $posted_on );
endif;
if ( blite_meta_option( 'show_author', 'show_single_author' ) ) :
$byline = '' . esc_html( get_the_author() ) . '';
printf( '%1$s %2$s', esc_html__( 'By', 'blite' ), $byline );
endif;
}
endif;
if ( ! function_exists( 'blite_article_category' ) ) :
/**
* Prints HTML with meta information for the current post-date/time and author.
*/
function blite_article_category() {
if ( 'post' === get_post_type() ) {
if ( blite_meta_option( 'show_category', 'show_single_category' ) ) :
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( esc_html__( ', ', 'blite' ) );
if ( $categories_list ) {
/* translators: 1: list of categories. */
printf( '' . '%1$s' . '', $categories_list ); // WPCS: XSS OK.
}
endif;
}
}
endif;
if ( ! function_exists( 'blite_entry_footer' ) ) :
/**
* Prints HTML with meta information for the categories, tags and comments.
*/
function blite_entry_footer() {
// Hide category and tag text for pages.
if ( 'post' === get_post_type() ) {
if ( is_single() && blite_meta_option( '', 'show_single_tags' ) ) :
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_tag_list();
if ( $tags_list ) {
/* translators: 1: list of tags. */
printf( '' . '%1$s' . '', $tags_list ); // WPCS: XSS OK.
}
endif;
}
edit_post_link(
sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__( 'Edit %s', 'blite' ),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
),
'',
''
);
}
endif;
if ( ! function_exists( 'blite_read_time' ) ) :
/**
* Display read time for post
*/
function blite_read_time( $content = '' ) {
if ( empty( $content ) )
return;
$words = str_word_count( strip_tags( $content ) );
$m = ceil( $words / 200 );
$est = $m . esc_html__( ' min', 'blite' ) . ( $m == 1 ? '' : esc_html__( 's', 'blite' ) );
printf( '%1$s %2$s', $est, esc_html__( ' read', 'blite' ) );
}
endif;
/**
* Checks to see if meta option is enabled in archive/blog and single
*/
function blite_meta_option( $blog_option = '', $single_option = '' ) {
if ( is_archive() || is_search() || is_home() ) :
if ( blite_theme_option( $blog_option ) )
return true;
else
return false;
elseif ( is_single() ) :
if ( blite_theme_option( $single_option ) )
return true;
else
return false;
else :
return true;
endif;
}