' . 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( ', ' ) . ''; // 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 ) ); ?>