diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 922ab8fb84..1b08219206 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -836,13 +836,20 @@ function wp_title($sep = '»', $display = true, $seplocation = '') { if ( !empty($title) ) $prefix = " $sep "; + /** + * Filter the parts of the page title. + * + * @since 4.0.0 + * + * @param array $title_array Parts of the page title. + */ + $title_array = apply_filters( 'wp_title_parts', explode( $t_sep, $title ) ); + // Determines position of the separator and direction of the breadcrumb if ( 'right' == $seplocation ) { // sep on right, so reverse the order - $title_array = explode( $t_sep, $title ); $title_array = array_reverse( $title_array ); $title = implode( " $sep ", $title_array ) . $prefix; } else { - $title_array = explode( $t_sep, $title ); $title = $prefix . implode( " $sep ", $title_array ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 8db728b03b..6b8acb6365 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.0-alpha-20140604'; +$wp_version = '4.0-alpha-20140605'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.