Changeset 51019 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 05/25/2021 11:42:15 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r50912 r51019 1239 1239 1240 1240 $title = implode( " $sep ", array_filter( $title ) ); 1241 $title = wptexturize( $title ); 1242 $title = convert_chars( $title ); 1243 $title = esc_html( $title ); 1244 $title = capital_P_dangit( $title ); 1241 1242 /** 1243 * Filters the document title. 1244 * 1245 * @since 5.8.0 1246 * 1247 * @param string $title Document title. 1248 */ 1249 $title = apply_filters( 'document_title', $title ); 1245 1250 1246 1251 return $title;
Note: See TracChangeset
for help on using the changeset viewer.