Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: sanitize_key

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
2142
2143      /**
2144       * Filters a sanitized key string.
2145       *
2146       * @since 3.0.0
2147       *
2148       * @param string $key     Sanitized key.
2149       * @param string $raw_key The key prior to sanitization.
2150       */
2151      return apply_filters( 'sanitize_key', $key, $raw_key );
2152 }
2153
2154 /**
2155  * Sanitizes a string into a slug, which can be used in URLs or HTML attributes.
2156  *
2157  * By default, converts accent characters to ASCII characters and further
2158  * limits the output to alphanumeric characters, underscore (_) and dash (-)
2159  * through the {@see 'sanitize_title'} filter.
2160  *