Ticket #17877: 17877.2.diff
File 17877.2.diff, 784 bytes (added by , 11 years ago) |
---|
-
wp-includes/general-template.php
589 589 if ( !empty($title) ) 590 590 $prefix = " $sep "; 591 591 592 $title_array = apply_filters( 'wp_title_parts', explode( $t_sep, $title ) ); 593 592 594 // Determines position of the separator and direction of the breadcrumb 593 595 if ( 'right' == $seplocation ) { // sep on right, so reverse the order 594 $title_array = explode( $t_sep, $title );595 596 $title_array = array_reverse( $title_array ); 596 597 $title = implode( " $sep ", $title_array ) . $prefix; 597 598 } else { 598 $title_array = explode( $t_sep, $title );599 599 $title = $prefix . implode( " $sep ", $title_array ); 600 600 } 601 601