WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 1328 | if ( count( $parts ) <= 2 ) { |
| 1329 | /** |
| 1330 | * Filter a sanitized filename string. |
| 1331 | * |
| 1332 | * @since 2.8.0 |
| 1333 | * |
| 1334 | * @param string $filename Sanitized filename. |
| 1335 | * @param string $filename_raw The filename prior to sanitization. |
| 1336 | */ |
| 1337 | return apply_filters( 'sanitize_file_name', $filename, $filename_raw ); |
| 1338 | } |
| 1339 | |
| 1340 | // Process multiple extensions |
| 1341 | $filename = array_shift($parts); |
| 1342 | $extension = array_pop($parts); |
| 1343 | $mimes = get_allowed_mime_types(); |
| 1344 | |
| 1345 | /* |
| 1346 | * Loop over any intermediate extensions. Postfix them with a trailing underscore |
| Line | Code |
| 1358 | break; |
| 1359 | } |
| 1360 | } |
| 1361 | if ( !$allowed ) |
| 1362 | $filename .= '_'; |
| 1363 | } |
| 1364 | } |
| 1365 | $filename .= '.' . $extension; |
| 1366 | /** This filter is documented in wp-includes/formatting.php */ |
| 1367 | return apply_filters('sanitize_file_name', $filename, $filename_raw); |
| 1368 | } |
| 1369 | |
| 1370 | /** |
| 1371 | * Sanitizes a username, stripping out unsafe characters. |
| 1372 | * |
| 1373 | * Removes tags, octets, entities, and if strict is enabled, will only keep |
| 1374 | * alphanumeric, _, space, ., -, @. After sanitizing, it passes the username, |
| 1375 | * raw username (the username in the parameter), and the value of $strict as |
| 1376 | * parameters for the 'sanitize_user' filter. |