我正在使用函数esc_url_raw
..
WordPress function:
esc_url_raw( string $url, array $protocols = null )
如何使用“https”打印网址?
Example:
input: http://example.com
ouput: https://example.com
答案 0 :(得分:0)
您可以在$protocols
变量中提供可接受的协议。它可以是array()
,http
,https
等协议。您可以参考wp_allowed_protocols获取允许的协议。
作为答案,您可以$protocols
为[{1}}提供一个数组,作为array('http', 'https')
的参数。
如果您实际上想要将网址从esc_url_raw
转换为http
,那么您可以定义以下内容:
https