wp_get_default_update_https_url

函数
wp_get_default_update_https_url ( No parameters )
Access
Private
返回值
  • (string) Default URL to learn more about updating to HTTPS.
定义位置
相关方法
wp_get_default_update_php_urlwp_get_direct_update_https_urlwp_get_update_https_urlwp_get_update_php_urlwp_get_direct_php_update_url
引入
5.7.0
弃用
-

wp_get_default_update_https_url: 这个函数返回WordPress的默认HTTPS更新URL。它用于确定检查WordPress的更新时使用的URL。

获取默认的URL以了解更多关于更新网站使用HTTPS的信息。

不要使用此函数来检索此URL。相反,在依赖该URL时,使用{@see}: 这个函数不允许修改返回的URL,只用于比较实际使用的URL和默认的URL。

function wp_get_default_update_https_url() {
	/* translators: Documentation explaining HTTPS and why it should be used. */
	return __( 'https://wordpress.org/support/article/why-should-i-use-https/' );
}

常见问题

FAQs
查看更多 >