is_upload_space_available()

最后更新于:2021-11-27 12:04:12

is_upload_space_available()

Determines if there is any upload space left in the current blog’s quota.

响应

(bool) True if space is available, false otherwise.

源文件

文件: gc-includes/ms-functions.php

function is_upload_space_available() {
	if ( get_site_option( 'upload_space_check_disabled' ) ) {
		return true;
	}

	return (bool) get_upload_space_available();
}