';
$cat = wp_get_post_categories($post->ID);
$k = count($cat);
foreach ($cat as $c) {
$categories = get_category($c);
$k -= 1;
if ($k == 0) {
echo '' . esc_html($categories->name) . '';
} else {
echo '' . esc_html($categories->name) . ', ';
}
}
echo '';
}
}
if (! function_exists('maia_tbay_full_top_meta')) {
function maia_tbay_full_top_meta($post)
{
// format
$post_format = get_post_format();
$header_class = $post_format ? '' : 'border-left';
echo '', '
');
}
// details
$id = get_the_author_meta('ID');
echo ''. esc_html__('Posted: ', 'maia') .'' . esc_html(get_the_date('M jS, Y')) . '';
// comments
echo ''. esc_html__('In:', 'maia') .' ';
$cat = wp_get_post_categories($post->ID);
$k = count($cat);
foreach ($cat as $c) {
$categories = get_category($c);
$k -= 1;
if ($k == 0) {
echo '' . esc_html($categories->name) . '';
} else {
echo '' . esc_html($categories->name) . ', ';
}
}
echo '';
if (! is_search()) {
if (! post_password_required() && (comments_open() || get_comments_number())) {
echo '';
comments_popup_link('0', '1', '%');
echo '';
}
}
echo '