wp_is_site_protected_by_basic_auth

函数
wp_is_site_protected_by_basic_auth ( $context = '' )
参数
  • (string) $context The context to check for protection. Accepts 'login', 'admin', and 'front'. Defaults to the current context.
    Required:
    Default: (empty)
返回值
  • (bool) Whether the site is protected by Basic Auth.
定义位置
相关方法
is_protected_ajax_actionwp_is_site_url_using_https_wp_die_process_inputis_protected_endpointis_protected_meta
引入
5.6.1
弃用
-

wp_is_site_protected_by_basic_auth: 这个函数用来检查WordPress站点是否受到基本认证的保护。如果基本认证被启用,则返回true,否则返回false。

检查这个网站是否受到HTTP Basic Auth的保护。

目前,这只是检查是否存在Basic Auth证书。因此,在与当前上下文不同的情况下调用这个函数可能会得到不准确的结果。在未来的版本中,这个评估可能会变得更加强大。

目前,这个功能只被应用密码使用,以防止冲突,因为它也使用Basic Auth。

function wp_is_site_protected_by_basic_auth( $context = '' ) {
	global $pagenow;

	if ( ! $context ) {
		if ( 'wp-login.php' === $pagenow ) {
			$context = 'login';
		} elseif ( is_admin() ) {
			$context = 'admin';
		} else {
			$context = 'front';
		}
	}

	$is_protected = ! empty( $_SERVER['PHP_AUTH_USER'] ) || ! empty( $_SERVER['PHP_AUTH_PW'] );

	/**
	 * Filters whether a site is protected by HTTP Basic Auth.
	 *
	 * @since 5.6.1
	 *
	 * @param bool $is_protected Whether the site is protected by Basic Auth.
	 * @param string $context    The context to check for protection. One of 'login', 'admin', or 'front'.
	 */
	return apply_filters( 'wp_is_site_protected_by_basic_auth', $is_protected, $context );
}

常见问题

FAQs
查看更多 >