',
esc_url( get_permalink() ),
esc_attr( get_the_time() ),
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() )
);
return '' . $time_string . '';
} // blackwhite_lite_meta_date()
endif;
if ( ! function_exists( 'blackwhite_lite_meta_author' ) ) :
/**
* Displays the post author
*/
function blackwhite_lite_meta_author() {
$author_string = sprintf( '%3$s',
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
esc_attr( sprintf( esc_html__( 'View all posts by %s', 'blackwhite-lite' ), get_the_author() ) ),
esc_html( get_the_author() )
);
return 'By ' . $author_string . '';
} // blackwhite_lite_meta_author()
endif;
if ( ! function_exists( 'blackwhite_lite_more_link' ) ) :
/**
* Displays the more link on posts
*/
function blackwhite_lite_more_link() {
?>