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.
Line | Code |
---|---|
924 | $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", chr(0)); |
925 | /** |
926 | * Filter the list of characters to remove from a filename. |
927 | * |
928 | * @since 2.8.0 |
929 | * |
930 | * @param array $special_chars Characters to remove. |
931 | * @param string $filename_raw Filename as it was passed into sanitize_file_name(). |
932 | */ |
933 | $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw ); |
934 | $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename ); |
935 | $filename = str_replace($special_chars, '', $filename); |
936 | $filename = preg_replace('/[\s-]+/', '-', $filename); |
937 | $filename = trim($filename, '.-_'); |
938 |
|
939 | // Split the filename into a base and extension[s] |
940 | $parts = explode('.', $filename); |
941 |
|
942 | // Return if only one extension |