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 |
---|---|
709 | * |
710 | * @since 2.1.0 |
711 | * |
712 | * @param string $filename The filename to be sanitized |
713 | * @return string The sanitized filename |
714 | */ |
715 | function sanitize_file_name( $filename ) { |
716 | $filename_raw = $filename; |
717 | $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", chr(0)); |
718 | $special_chars = apply_filters('sanitize_file_name_chars', $special_chars, $filename_raw); |
719 | $filename = str_replace($special_chars, '', $filename); |
720 | $filename = preg_replace('/[\s-]+/', '-', $filename); |
721 | $filename = trim($filename, '.-_'); |
722 |
|
723 | // Split the filename into a base and extension[s] |
724 | $parts = explode('.', $filename); |
725 |
|
726 | // Return if only one extension |
727 | if ( count($parts) <= 2 ) |