Ticket #9227: get_the_category_display.patch
| File get_the_category_display.patch, 577 bytes (added by KevinB, 4 years ago) |
|---|
-
category-template.php
209 209 */ 210 210 function get_the_category_list( $separator = '', $parents='', $post_id = false ) { 211 211 global $wp_rewrite; 212 $categories = get_the_category( $post_id);212 $categories = apply_filters( 'get_the_category', get_the_category( $post_id ), 'display' ); 213 213 if ( empty( $categories ) ) 214 214 return apply_filters( 'the_category', __( 'Uncategorized' ), $separator, $parents ); 215 215
