redirection_cache_key, md5( $url
redirection_cache_key, md5( $url
Appears in: redirection.5.9.0
Hook Type: filter
Displaying hooks found in version: redirection.5.9.0apply_filters('redirection_cache_key, md5( $url') is found 1 times:
- /models/redirect/redirect-cache.php line 115
* @param string $url URL we are looking at. * @return string */ private function get_key( $url ) { return apply_filters( 'redirection_cache_key', md5( $url ) . '-' . (string) $this->key . '-' . REDIRECTION_VERSION ); } /** * Get the cache entry for a URL * * @param string $url Requested URL.