Ticket #2466: apply list_cats filter consistently part 2.diff
File apply list_cats filter consistently part 2.diff, 800 bytes (added by , 19 years ago) |
---|
-
C:/Xampp/htdocs/development/subversion/wordpress/wp-includes/template-functions-general.php
232 232 function single_cat_title($prefix = '', $display = true ) { 233 233 $cat = intval( get_query_var('cat') ); 234 234 if ( !empty($cat) && !(strtoupper($cat) == 'ALL') ) { 235 $my_cat_name = get_the_category_by_ID($cat);235 $my_cat_name = apply_filters('list_cats', get_the_category_by_ID($cat), $cat); 236 236 if ( !empty($my_cat_name) ) { 237 237 if ( $display ) 238 238 echo $prefix.strip_tags($my_cat_name);