is_upload_space_available(): bool

In this article

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

Return

bool True if space is available, false otherwise.

Source

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

	return (bool) get_upload_space_available();
}

Changelog

VersionDescription
3.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.