the_category, __( Uncategorized

the_category, __( Uncategorized

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: 7.0.3

apply_filters('the_category, __( Uncategorized') is found 1 times:

  • /wp-includes/category-template.php line 162
    	$categories = apply_filters( 'the_category_list', get_the_category( $post_id ), $post_id );
    
    	if ( empty( $categories ) ) {
    		/** This filter is documented in wp-includes/category-template.php */
    		return apply_filters( 'the_category', __( 'Uncategorized' ), $separator, $parents );
    	}
    
    	$rel = ( is_object( $wp_rewrite ) && $wp_rewrite->using_permalinks() ) ? 'rel="category tag"' : 'rel="category"';
    
    	$thelist = '';
    	if ( '' === $separator ) {