1 2 3 4 5 6 7 8 9 10 11
| <?php $categories = get_the_category(); $output = ''; if ( ! empty( $categories ) ) { foreach( $categories as $category ) { $output .= '<a href="' . esc_url( get_category_link( $category->term_id ) ) . '">' . esc_html( $category->name ) . '</a>, '; } echo trim( $output, ', ' ); } ?>
|