' . get_the_date() . ' ';
// Get the post author.
$post_meta_array[] = '' . get_the_author_link() . '';
// Get the post categories.
$post_meta_array[] = '' . get_the_category_list( ', ' ) . '';
// Get the post tags.
if ( has_tag() ) {
$post_meta_array[] = '' . get_the_tag_list( '', ', ' ) . '';
}
// Get the comments.
if ( comments_open() || get_comments_number() ) {
$comments_number = get_comments_number();
$post_meta_array[] = '';
}
// Filter the post meta array.
$post_meta_array = apply_filters( 'agncy_post_meta_array', $post_meta_array, get_the_id() );
// implode and escape the array with the filtered divider.
echo wp_kses_post( implode( '', $post_meta_array ) );
?>