'.get_the_category_list(', ').'' : '';
$besty_tag_list = get_the_tag_list() ? ' ' .get_the_tag_list('',', ').'' : '';
$besty_date = sprintf( ' ',
esc_url( get_day_link( $besty_year, $besty_month, $besty_day)),
esc_attr( get_the_time() ),
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date('d M, Y') )
);
$besty_author = sprintf( ' %3$s',
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
/* translators: 1: author name */
esc_attr( sprintf( __( 'View all posts by %s', 'besty' ), get_the_author() ) ),
get_the_author()
);
if(comments_open()) {
if(get_comments_number()>=1)
$besty_comments = ' '.get_comments_number().'';
else
$besty_comments = '';
} else {
$besty_comments = '';
}
printf('%1$s %2$s %3$s %4$s %5$s',
$besty_date,
$besty_author,
$besty_comments,
$besty_tag_list,
$besty_category_list
);
} ?>