%1$s',
get_avatar( get_the_author_meta( 'user_email' ), $author_avatar_size )
);
printf(('%3$s%2$s'), 'meta-prep meta-prep-author',
sprintf('%3$s',
esc_url(get_permalink()),
esc_attr(get_the_time()),
get_the_date(get_option('date_format'))),
sprintf('%3$s',
esc_url(get_author_posts_url(get_the_author_meta('ID'))),
esc_attr(sprintf(__('View all posts by %s', 'amity'), get_the_author())),
get_the_author()
));
if ( !is_page() && !post_password_required() && (comments_open() || get_comments_number())) {
echo '';
}
}
function amity_index_entry_posted_on() {
printf(('Published %2$s / by %3$s'), 'meta-prep meta-prep-author',
sprintf('%3$s',
esc_url(get_permalink()),
esc_attr(get_the_time()),
get_the_date(get_option('date_format'))),
sprintf('%3$s',
esc_url(get_author_posts_url(get_the_author_meta('ID'))),
esc_attr(sprintf(__('View all posts by %s', 'amity'), get_the_author())),
get_the_author()
));
if ( !is_page() && !post_password_required() && (comments_open() || get_comments_number())) {
echo ' / ';
}
}
/*
================================================================================================
2.0 - Entry Comments and Taxonomies
================================================================================================
*/
function amity_entry_taxonomies() {
$cat_list = get_the_category_list(__(' | ', 'amity'));
$tag_list = get_the_tag_list('', __(' | ', 'amity'));
if ($cat_list) {
printf(' %1$s %2$s
',
__(' Posted In', 'amity'),
$cat_list
);
}
if ($tag_list) {
printf('%1$s %2$s
',
__(' Tagged', 'amity'),
$tag_list
);
}
}