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
2150
2151      /**
2152       * Filters a sanitized key string.
2153       *
2154       * @since 3.0.0
2155       *
2156       * @param string $sanitized_key Sanitized key.
2157       * @param string $key           The key prior to sanitization.
2158       */
2159      return apply_filters( 'sanitize_key', $sanitized_key, $key );
2160 }
2161
2162 /**
2163  * Sanitizes a string into a slug, which can be used in URLs or HTML attributes.
2164  *
2165  * By default, converts accent characters to ASCII characters and further
2166  * limits the output to alphanumeric characters, underscore (_) and dash (-)
2167  * through the {@see 'sanitize_title'} filter.
2168  *