Changeset 53741 for trunk/src/wp-includes/theme.php
- Timestamp:
- 07/20/2022 09:11:30 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r53704 r53741 1180 1180 } 1181 1181 1182 /** 1183 * Filters the header image URL. 1184 * 1185 * @since 6.1.0 1186 * 1187 * @param string $url Header image URL. 1188 */ 1189 $url = apply_filters( 'get_header_image', $url ); 1190 1191 if ( ! is_string( $url ) ) { 1192 return false; 1193 } 1194 1195 $url = trim( $url ); 1182 1196 return sanitize_url( set_url_scheme( $url ) ); 1183 1197 }
Note: See TracChangeset
for help on using the changeset viewer.