set_url_scheme filter-hook . WP 3.4.0
Filters the resulting URL after setting the scheme.
Usage
add_filter( 'set_url_scheme', 'filter_function_name_5399', 10, 3 ); function filter_function_name_5399( $url, $scheme, $orig_scheme ){ // filter... return $url; }
- $url(string)
- The complete URL including scheme and path.
- $scheme(string)
- Scheme applied to the URL. One of 'http', 'https', or 'relative'.
- $orig_scheme(string/null)
- Scheme requested for the URL. One of 'http', 'https', 'login', 'login_post', 'admin', 'relative', 'rest', 'rpc', or null.
Changelog
Since 3.4.0 | Introduced. |
Where the hook is called
set_url_scheme
wp-includes/link-template.php 3694
return apply_filters( 'set_url_scheme', $url, $scheme, $orig_scheme );