wc_get_relative_url()
Make a URL relative, if possible.
Хуков нет.
Возвращает
Строку
.
Использование
wc_get_relative_url( $url );
- $url(строка) (обязательный)
- URL to make relative.
Список изменений
С версии 3.2.0 | Введена. |
Код wc_get_relative_url() wc get relative url WC 9.7.1
function wc_get_relative_url( $url ) { return wc_is_external_resource( $url ) ? $url : str_replace( array( 'http://', 'https://' ), '//', $url ); }