' . get_the_date() . ' '; // Get the post author. $post_meta_array[] = ''; // 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[] = '' . sprintf( esc_html( // translators: The amount of comments of this post. _nx( '%1$s comment', '%1$s comments', $comments_number, 'comments title', 'agncy' ) ), number_format_i18n( $comments_number ) ) . ''; } // 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 ) ); ?>