ID ); $separator = ', '; $output = ''; if ( $categories ) { echo '

'; echo '' . esc_html_x( 'Published in', 'PUBLISHED IN post category', 'startup-blog' ) . ' '; foreach ( $categories as $category ) { if ( $category === end( $categories ) && $category !== reset( $categories ) ) { $output = rtrim( $output, ", " ); $output .= ' ' . esc_html_x( 'and', 'category AND category', 'startup-blog' ) . ' '; } // translators: %s = the name of the post category $output .= 'name ) ) ) . '">' . esc_html( $category->cat_name ) . '' . $separator; } echo wp_kses_post( trim( $output, $separator ) ); echo "

"; }