Changeset 61108
- Timestamp:
- 10/31/2025 11:21:37 PM (6 weeks ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/general-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r61058 r61108 1437 1437 * @param string[] $title_array Array of parts of the page title. 1438 1438 */ 1439 $title_array = apply_filters( 'wp_title_parts', explode( $t_sep, $title) );1439 $title_array = apply_filters( 'wp_title_parts', ! empty( $title ) ? explode( $t_sep, $title ) : array() ); 1440 1440 1441 1441 // Determines position of the separator and direction of the breadcrumb.
Note: See TracChangeset
for help on using the changeset viewer.