wp_installing

函数
wp_installing ( $is_installing = null )
参数
  • (bool) $is_installing Optional. True to set WP into Installing mode, false to turn Installing mode off. Omit this parameter if you only want to fetch the current status.
    Required:
    Default: null
返回值
  • (bool) True if WP is installing, otherwise false. When a `$is_installing` is passed, the function will report whether WP was in installing mode prior to the change to `$is_installing`.
定义位置
相关方法
wp_installwp_insert_linkwp_ajax_install_pluginwp_not_installedwp_star_rating
引入
4.4.0
弃用
-

wp_installing: 这个函数用来检查WordPress当前是否正在安装。

检查或设置WordPress是否处于"安装"模式。

如果在引导过程中定义了`WP_INSTALLING`常量,`wp_installing()`将默认为`true`。

function wp_installing( $is_installing = null ) {
	static $installing = null;

	// Support for the `WP_INSTALLING` constant, defined before WP is loaded.
	if ( is_null( $installing ) ) {
		$installing = defined( 'WP_INSTALLING' ) && WP_INSTALLING;
	}

	if ( ! is_null( $is_installing ) ) {
		$old_installing = $installing;
		$installing     = $is_installing;
		return (bool) $old_installing;
	}

	return (bool) $installing;
}

常见问题

FAQs
查看更多 >