set_url_scheme хук-фильтр . WP 3.4.0
Filters the resulting URL after setting the scheme.
Использование
add_filter( 'set_url_scheme', 'filter_function_name_8255', 10, 3 ); function filter_function_name_8255( $url, $scheme, $orig_scheme ){ // filter... return $url; }
- $url(строка)
- The complete URL including scheme and path.
- $scheme(строка)
- Scheme applied to the URL. One of 'http', 'https', or 'relative'.
- $orig_scheme(строка/null)
- Scheme requested for the URL. One of 'http', 'https', 'login', 'login_post', 'admin', 'relative', 'rest', 'rpc', or null.
Список изменений
С версии 3.4.0 | Введена. |
Где вызывается хук
set_url_scheme
wp-includes/link-template.php 3694
return apply_filters( 'set_url_scheme', $url, $scheme, $orig_scheme );